I want to make a page that displays some data from a DB, so I have created some functions that get that data from my DB. I'm just a newbie in Node.js, so as far as I understand, if I want to use all of them in a single page (HTTP response) I'd have to nest them all:

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  var html = "<h1>Demo page</h1>";
  getSomeDate(client, function(someData) {
    html += "<p>"+ someData +"</p>";
    getSomeOtherDate(client, function(someOtherData) {
      html += "<p>"+ someOtherData +"</p>";
      getMoreData(client, function(moreData) {
        html += "<p>"+ moreData +"</p>";
        res.write(html);
        res.end();
      });
    });
  });

If there are many functions like that, then the nesting becomes a problem.

Is there a way to avoid this? I guess it has to do with how you combine multiple asynchronous functions, which seems to be something fundamental.

link|improve this question

67% accept rate
What is the "problem" with nesting? 8-space indents killing 80-col editor? :-) [I prefer 2 space] – pst Nov 20 '10 at 20:10
2  
So when you have 10 async functions, you have 10 levels of indentation? – Kay Pale Nov 20 '10 at 20:32
This link may help. stackoverflow.com/a/4631909/290340 – Evan Plaice Jan 24 at 22:28
feedback

7 Answers

up vote 6 down vote accepted

Interesting observation. Note that in JavaScript you can normally replace inline anonymous callback functions with named function variables.

The following:

http.createServer(function (req, res) {
   // inline callback function ...

   getSomeData(client, function (someData) {
      // another inline callback function ...

      getMoreData(client, function(moreData) {
         // one more inline callback function ...
      });
   });

   // etc ...
});

Could be rewritten to look something like this:

var moreDataParser = function (moreData) {
   // date parsing logic
};

var someDataParser = function (someData) {
   // some data parsing logic

   getMoreData(client, moreDataParser);
};

var createServerCallback = function (req, res) {
   // create server logic

   getSomeData(client, someDataParser);

   // etc ...
};

http.createServer(createServerCallback);

However unless you plan to reuse to callback logic in other places, it is often much easier to read inline anonymous functions, as in your example. It will also spare you from having to find a name for all the callbacks.

In addition note that as @pst noted in a comment below, if you are accessing closure variables within the inner functions, the above would not be a straightforward translation. In such cases, using inline anonymous functions is even more preferable.

link|improve this answer
2  
However, (and really just to understand the trade-off) when un-nested, some closure semantics over variables can be lost so it's not a direct translation. In the above example access to 'res' in getMoreData is lost. – pst Nov 20 '10 at 20:08
@pst: Yes good point. Let me clarify that in my answer. – Daniel Vassallo Nov 20 '10 at 20:10
feedback

Kay, simply use one of these modules.

It will turn this:

dbGet('userIdOf:bobvance', function(userId) {
    dbSet('user:' + userId + ':email', 'bobvance@potato.egg', function() {
        dbSet('user:' + userId + ':firstName', 'Bob', function() {
            dbSet('user:' + userId + ':lastName', 'Vance', function() {
                okWeAreDone();
            });
        });
    });
});

Into this:

flow.exec(
    function() {
        dbGet('userIdOf:bobvance', this);

    },function(userId) {
        dbSet('user:' + userId + ':email', 'bobvance@potato.egg', this.MULTI());
        dbSet('user:' + userId + ':firstName', 'Bob', this.MULTI());
        dbSet('user:' + userId + ':lastName', 'Vance', this.MULTI());

    },function() {
        okWeAreDone()
    }
);
link|improve this answer
3  
Had a quick look at flow-js, step and async and it seems that they only deal with the order of function execution. In my case there is access to inline closure variables in every indentation. So for example the functions work like this: get HTTP req/res, get userid from DB for cookie, get email for the later userid, get more data for the later email,..., get X for later Y,... If I'm not mistaken, these frameworks only assure that async functions will be executed in the correct order, but in every function body there is not way to get the variable provided naturally by the closures(?) Thanks:) – Kay Pale Dec 5 '10 at 20:07
feedback

For the most part, I'd agree with Daniel Vassallo. If you can break up a complicated and deeply nested function into separate named functions, then that is usually a good idea. For the times when it makes sense to do it inside a single function, you can use one of the many node.js async libraries available. People have come up with lots of different ways to tackle this, so take a look at the node.js modules page and see what you think.

I've written a module for this myself, called async.js. Using this, the above example could be updated to:

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  async.series({
    someData: async.apply(getSomeDate, client),
    someOtherData: async.apply(getSomeOtherDate, client),
    moreData: async.apply(getMoreData, client)
  },
  function (err, results) {
    var html = "<h1>Demo page</h1>";
    html += "<p>" + results.someData + "</p>";
    html += "<p>" + results.someOtherData + "</p>";
    html += "<p>" + results.moreData + "</p>";
    res.write(html);
    res.end();
  });
});

One nice thing about this approach is that you can quickly change your code to fetch the data in parallel by changing the 'series' function to 'parallel'. What's more, async.js will also work inside the browser, so you can use the same methods as you would in node.js should you encounter any tricky async code.

Hope that's useful!

link|improve this answer
Hi Caolan and thanks for the answer! In my case there is access to inline closure variables in every indentation. So for example the functions work like this: get HTTP req/res, get userid from DB for cookie, get email for the later userid, get more data for the later email,..., get X for later Y,... If I'm not mistaken, the code you suggest only assures that async functions will be executed in the correct order, but in every function body there is not way to get the variable provided naturally by the closures in my original code. Is that the case? – Kay Pale Dec 5 '10 at 20:03
feedback

What you need is a bit of syntactic sugar. Chek this out:

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  var html = ["<h1>Demo page</h1>"];
  var pushHTML = html.push.bind(html);

  Queue.push( getSomeData.partial(client, pushHTML) );
  Queue.push( getSomeOtherData.partial(client, pushHTML) );
  Queue.push( getMoreData.partial(client, pushHTML) );
  Queue.push( function() {
    res.write(html.join(''));
    res.end();
  });
  Queue.execute();
}); 

Pretty neat, isn't it? You may notice that html became an array. That's partly because strings are immutable, so you better off with buffering your output in an array, than discarding larger and larger strings. The other reason is because of another nice syntax with bind.

Queue in the example is really just an example and along with partial can be implemented as follows

// Functional programming for the rescue
Function.prototype.partial = function() {
  var fun = this,
      preArgs = Array.prototype.slice.call(arguments);
  return function() {
    fun.apply(null, preArgs.concat.apply(preArgs, arguments));
  };
};

Queue = [];
Queue.execute = function () {
  if (Queue.length) {
    Queue.shift()(Queue.execute);
  }
};
link|improve this answer
Queue.execute() will simply execute the partials one after the other, without waiting for the results from async calls. – ngn Nov 22 '10 at 5:30
Spot on, thanks. I've updated the answer. Here is a test: jsbin.com/ebobo5/edit (with an optional last function) – galambalazs Nov 22 '10 at 20:36
Hi galambalazs and thanks for the answer! In my case there is access to inline closure variables in every indentation. So for example the functions work like this: get HTTP req/res, get userid from DB for cookie, get email for the later userid, get more data for the later email,..., get X for later Y,... If I'm not mistaken, the code you suggest only assures that async functions will be executed in the correct order, but in every function body there is not way to get the variable provided naturally by the closures in my original code. Is that the case? – Kay Pale Dec 5 '10 at 20:01
Well you definetely lose closures in all the answers. What you can do is to create an object in the global scope for shared data. So e.g. your first function adds obj.email and your next function uses obj.email then deletes it (or just assigns null). – galambalazs Dec 5 '10 at 21:02
feedback

What you have done there is take an asynch pattern and apply it to 3 functions called in sequence, each one waiting for the previous one to complete before starting - i.e. you have made them synchronous. The point about asynch programming is that you can have several functions all running at once and not have to wait for each to complete.

if getSomeDate() doesn't provide anything to getSomeOtherDate(), which doesn't provide anything to getMoreData() then why don't you call them asynchronously as js allows or if they are interdependent (and not asynchronous) write them as a single function?

You don't need to use nesting to control the flow - for instance, get each function to finish by calling a common function that determines when all 3 have completed and then sends the response.

link|improve this answer
feedback

Suppose you could do this:

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/html'});
    var html = "<h1>Demo page</h1>";
    chain([
        function (next) {
            getSomeDate(client, next);
        },
        function (next, someData) {
            html += "<p>"+ someData +"</p>";
            getSomeOtherDate(client, next);
        },
        function (next, someOtherData) {
            html += "<p>"+ someOtherData +"</p>";
            getMoreData(client, next);
        },
        function (next, moreData) {
            html += "<p>"+ moreData +"</p>";
            res.write(html);
            res.end();
        }
    ]);
});

You only need to implement chain() so that it partially applies each function to the next one, and immediately invokes only the first function:

function chain(fs) {
    var f = function () {};
    for (var i = fs.length - 1; i >= 0; i--) {
        f = fs[i].partial(f);
    }
    f();
}
link|improve this answer
Hi ngn and thanks for the answer! In my case there is access to inline closure variables in every indentation. So for example the functions work like this: get HTTP req/res, get userid from DB for cookie, get email for the later userid, get more data for the later email,..., get X for later Y,... If I'm not mistaken, the code you suggest only assures that async functions will be executed in the correct order, but in every function body there is not way to get the variable provided naturally by the closures in my original code. Is that the case? – Kay Pale Dec 5 '10 at 20:02
feedback

I had the same problem. I've seen the major libs to node run async functions, and they presents so non-natural chaining (you need to use three or more methods confs etc) to build your code.

I spent some weeks developing a solution to be simple and easing to read. Please, give a try to EnqJS. All opinions will be appreciated.

Instead of:

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  var html = "<h1>Demo page</h1>";
  getSomeDate(client, function(someData) {
    html += "<p>"+ someData +"</p>";
    getSomeOtherDate(client, function(someOtherData) {
      html += "<p>"+ someOtherData +"</p>";
      getMoreData(client, function(moreData) {
        html += "<p>"+ moreData +"</p>";
        res.write(html);
        res.end();
      });
    });
  });

with EnqJS:

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  var html = "<h1>Demo page</h1>";

  enq(function(){
    var self=this;
    getSomeDate(client, function(someData){
      html += "<p>"+ someData +"</p>";
      self.return();
    })
  })(function(){
    var self=this;
    getSomeOtherDate(client, function(someOtherData){ 
      html += "<p>"+ someOtherData +"</p>";
      self.return();
    })
  })(function(){
    var self=this;
    getMoreData(client, function(moreData) {
      html += "<p>"+ moreData +"</p>";
      self.return();
      res.write(html);
      res.end();
    });
  });
});

Observe that the code appears to be bigger than before. But it isn't nested as before. To appear more natural, the chains are called imediately:

enq(fn1)(fn2)(fn3)(fn4)(fn4)(...)

And to say that it returned, inside the function we call:

this.return(response)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.