How to Integrate Owl Carousel 2 in Angular
In this tutorial, I am going to show you how to integrate Owl Carousel 2 in your Angular app. The ngx-owl-carousel-o library is going to help us create an Image slider in Angular. You can see a preview of this slider from here. Prerequisites Angular CLI installed on our system To continue with this tutorial you should have installed Angular CLI in your pc. If not run below command in your terminal 1npm install -g @angular/cli Create Angular Project I am going to implement this...
API Authentication with JWT and Passport
In this tutorial, I am going to show you how authenticate your API using JWT and Passport. JWT is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. Prerequisites Node.js To Continue with this tutorial, you should have installed Node.js in your pc. If you are still not installed Node.js in your machine you can download it from here. Mongo DB To Continue with this tutorial, you should...
Create Charts in Vue.js with Chart.js & vue-chartjs
In this tutorial, I am going to explain how to create awesome charts in Vue.js using chart.js and vue-chart.js package. When it comes to modern web applications data visualization is important becuase users can esaily undestand and figure out data using charts. You can see a complete preview of this tutorial from here. Prerequisites Vue CLI To Continue with this tutorial, you should have installed Vue CLI in your pc. If you are still not installed Vue.js CLI in your machine you can...
Top Javascript UI Frameworks and Libraries
In today's article, I am going to talk about top Javascript UI Frmaworks and Frameworks. When we consider about the Javascript, it can be identified as the heart of today’s snappy and fast web apps. when we consider about the UI frameworks and libraries, there are countless UI frameworks and libraries for building complex, reactive apps that scale well. The most common and popular JavaScript frameworks available present have some common capabilities. Some of them are, can keep state and...
Best GitHub repositories for web developers
As a web developers, it is essential to keep touch with latest technologies and best coding practices. o, in this article I'll will show few great GitHub repos (few amazing resources) which can help to enhance your Web Development skills. Node.js Best Practices It you are a Node.js lover and want to learn inspiring thing and coding best practices, this is the right place to keep yourself updated with the Node world. This repository gives you a summary on Node.js best practices and also it...
How to create simple Node.js server
In this article, I am showing you how to create a simple Node.js server. What is Node.js To learn what is Node.js and use Node.js mostly in modern applcations refer my previous article from here. Prerequisites * Installed Node.js To Continue with this tutorial, you should have installed Node.js in your pc. If you are still not installed Node.js in your machine you can download it from here. Create a project folder First you need to create a project folder for this project....
What is new in Laravel 8
In today's article, I am going to talk about cool and amazing features released on newer version of Laravel. What is Laravel? I think most of you are familiar with what is
Deploy your Angular app to Heroku
In my previous articles, I showed you how to deploy your static website to Heroku. So in this article, I am showing you how to deploy a Angular App to Heroku for free. What is Heroku is? In my
How to deploy static website to Heroku
In my previous articles, I showed you some free services/platforms to deploy your static websites. So in this article, I am showing you how to deploy a static website to Heroku for free. What is Heroku is? Heroku is a hosting platform where you can deploy dynamic applications in Rails, PHP, Node.js and Python. If you don’t want to pay for cloud storage and don’t mind your site being ‘asleep’ during inactive hours, Heroku is a great platform for demo-ing your projects online ...
Common Git command with examples
Working with Git on the command line can be little bit tricky. To help with that, I’ve listed common Git commands in this article, what each one means, and how to use them. My aim is to make Git easier to use on a daily basis. git config This "git config" command helps you to, Tell Git who you are by allowing you to configure the author name and email address to be used with your commits. 12git config --global user.name "John Doe"git config --global user.email...