
In this video, I will teach you how to connect Node.js Application to MongoLab.
You will learn what is Callback in Node.js and how to write your first callback method
You will learn what is callbackhell and why callbackhell is a bad way to write code in node.js.
Async.js is best third party library to work with callbacks. I'll introduce you some of the best methods of Async.js
I'll teach you the practical example of Async.series method
If you want to run tasks in series by using callbacks. you must use async.waterfall method
I'll show you how to apply async.waterfall method to run tasks in series.
In this video, you will learn what is a promise in Node.js and how to create a promise in Node.js
Promise chaining is the best way to execute tasks in series using promises. you will learn what is promise chaining and how to apply into your application
One of the best design pattern to write clean code is Async/Await. You will learn what is Async/Await and how Async/Await works with Promises
In this video, I will show you how to run asynchronous tasks in the series using Async/Await.
If you want to run tasks in parallel by using callbacks I will show you how can you do it by using Async.parallel method
I'll use node-rest-client package to send the network request. You will learn how to install and integrate this package into the demo application
You will learn how to use Async.parallel method.
You will learn how to send the network request by using promise based library axios.
In this video, I will show you how to run asynchronous tasks in the parallel using Promise.all
In this video, I will show you how to run asynchronous tasks in the parallel using Async/Await.
In this video, I will talk about the problems to run asynchronous tasks in the loop
If you want to run tasks in the loop by using callbacks. You must use the Async.each method
You can also run tasks in the loop by using Promise.all method.
One of the best way to run tasks in the loop is Async/Await.
In this video, you will learn how to convert callbacks to promises by using bluebird library
You will learn how to convert all the callback methods of third party npm module like mongoose. I'll teach you how can you do it by using bluebird.promisifyAll method
This course will include topics on