When you use asynchronous programming in NodeJS
, you may end
up with Callback Hell
or Pyramid of Doom
when you have more number of asynchronous functions to be called one after another one as below.
Callback - Once your first function is executed asynchronously, your main thread should be notified about it. For which you are passing a function as callback
which will be fired once the asynchronous operation completes.
When you have more number of asynchronous functions in chain or inside a big loop, you may have to pass the same number of callbacks to find out the completion of each operation and the last one to perform other stuffs such as returning the response etc.
When you code them with more number of callbacks, it becomes very hard to manage/maintain and lacks better readability like the one below.
getData(function(a){
getMoreData(a, function(b){
getMoreData(b, function(c){
getMoreData(c, function(d){
getMoreData(d, function(e){
...
});
});
});
});
});
To get rid of these disadvantages and for better readability and
maintenance, we may go with other modules such as async
, bluebird
etc. You can choose whatever you like which seems to be better for you
in terms of understanding and satisfying all the requirements without
making things too complex.
Anyways, this is purely up-to-you to go with the callback hell
or other modules.
To get into the deeper insights,
https://strongloop.com/strongblog/node-js-callback-hell-promises-generators/