Hi,

I'm new to Node.js and wrapping my head around the asynchronous programming 
model. A question comes to mind is why 'require' itself does not use 
callbacks like below. I believe IO is involved in require and a lot of 
things can fail.

require('http', 
function(http){
   // do stuff with http
},
function(error) {
   console.log("Failed to load http");
});


Thanks,
Guoliang Cao

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to