Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
I haven't used connect, but this page sure makes it sound analogous to Rails' Rack. Do you understand what middleware is, outside of the context of Node? – Matt Ball Mar 12 '11 at 18:05
Honestly, not as much as i would like to. As far as I know it's the layer that does all the pre-app stuff like routing, gzipping, headers, cookies..? Am I right? So does it work in a way that routing to the proper MVC controller/action not inside of the MVC framework (like Rails), but in the middleware? – tillda Mar 12 '11 at 19:14

3 Answers

up vote 329 down vote accepted

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:

  • Node.js itself offers an http module, whose createServer method returns an object that you can use to respond to HTTP requests. That object inherits the http.Server prototype.

  • Connect also offers a createServer method, which returns an object that inherits an extended version of http.Server. Connect's extensions are mainly there to make it easy to plug in middleware. That's why Connect describes itself as a "middleware framework," and is often analogized to Ruby's Rack.

  • Express does to Connect what Connect does to the http module: It offers a createServer method that extends Connect's Server prototype. So all of the functionality of Connect is there, plus view rendering and a handy DSL for describing routes. Ruby's Sinatra is a good analogy.

  • Then there are other frameworks that go even further and extend Express! Zappa, for instance, which integrates support for CoffeeScript, server-side jQuery, and testing.

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 connect.static (a middleware that comes with Connect), configured to point to a directory, and your server will provide access to the files in that directory. Note that Express provides Connect's middlewares also; express.static is the same as connect.static. (Both were known as staticProvider until recently.)

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.

share|improve this answer
44  
One thing that upsets me about Connect is that its documentation doesn't seem to acknowledge that Node is more than a HTTP server. "Connect is a middleware framework for Node.js" -- no, "Connect is a middleware framework for Node.js's HTTP server" – slim Aug 8 '11 at 12:23
9  
@slim I think you're reading into that too much. The makers of Connect are preeminent Node developers; they're well aware that Node is more than an HTTP server. But it does have an HTTP server built in, and Connect is a middleware framework that you can use in your Node.js app. – Trevor Burnham Aug 8 '11 at 13:47
5  
Oh I'm sure the makers of Connect are fully aware of that. They couldn't have achieved what they have without a thorough understanding of Node. But the choice of words is confusing for newcomers to Node; and to newcomers to Connect. – slim Aug 9 '11 at 15:07
3  
crystal clear, what all answers should strive for. Excellent work Trevor. – Mark Essel Sep 29 '11 at 11:42
4  
Great explanation. Answers like this help bring new people into the Node.js ecosystem. For people getting familiar with developing web apps in Node.js, Express is the place to start. To continue the Ruby analogy, Express is comparable to Sinatra. It's particularly great for creating JSON APIs for Ajax client-side apps. One thing I've found is that once an application hits a certain level of complexity, another layer is needed that is more Rails like. I'm working on Locomotive for this purpose, which further layers on top of Express. – Jared Hanson Dec 13 '11 at 22:48
show 1 more comment

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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