Despite knowing JavaScript quite well, I'm confused what exactly these three projects in Node.js ecosystem do. Is it something like Rails' Rack? Can someone please explain?
|
|
I'm glad you asked about this, because it's definitely a common point of confusion for folks looking at Node.js. Here's my best shot at explaining it:
Here's a concrete example of what's meant by "middleware": Out of the box, none of the above serves static files for you. But just throw in My impression is that most "real" Node.js apps are being developed with Express these days; the features it adds are extremely useful, and all of the lower-level functionality is still there if you want it. |
|||||||||||||||||||||
|
|
Connect offers a "higher level" APIs for common HTTP server functionality like session management, authentication, logging and more. Express is built on top of Connect with advanced (Sinatra like) functionality. |
|||
|
|
|
Connect takes advantage of the ability of "Closure" in javascript, makes it able to add layers onto the basic http request, thus making the whole framework easy to modify and without too much side-effects. |
|||
|
|