Everything in nodejs is non-blocking which is nice, but how would I go about making function alls that have to be one after the other without having a huge nested list of callbacks?
|
|
You don't have to nest your callbacks. There are many patterns in writing asynchronous code. For instance, this matrioska-nested-style...
... can be rewritten in a cleaner (but more verbose) way:
Another option is using a module to abstract serial and parallel execution of callbacks. |
|||
|
|
|
It's "a simple control-flow library for node.JS that makes parallel execution, serial execution, and error handling painless". |
|||||||||||
|
|
What you actually want to do is find out why your operations are blocking and recode them so they are non-blocking. Remove the dependencies on each other. You need to change the way you're thinking about non-blocking IO. Using a library to allow you to run this type code in a synchronous blocking manner is just a poor crutch. You will be significantly better off learning how to write non blocking code in node.js because that's what it is designed to do. |
||||
|
|