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

Since I'm going to be working with Node.js, I figured that using Express or Geddy would save me from repeating code that's already available.

I'm looking for the pros and cons of each framework and why one is particularly useful over the other. From what I've heard, Geddy provides a little more abstraction from the underlying node.js, but I'm not sure if this is true. I've also heard that Geddy has more of a strict built-in MVC-style architecture. Is this true?

I'm sure there are good applications to both, so that's what I'm looking to find out.

share|improve this question

2 Answers

up vote 205 down vote accepted

16 months later

You should build your application as a union of small processes doing their own thing well. Each process should use a union of small libraries that do one thing well. Use tools like airport and fleet to manage your processes

Using standard node patterns like streams goes a long way.

NPM is your friend, if you can abstract a solution into a simple module do so. Make sure you build your libraries in a layered fashion to reduce complexity (for an example see sockjs -> shoe -> mux-demux-shoe -> boot)

For an example of a modular, streaming application see stream-chat

12 months later

Frameworks? Frameworks?! Real men use node directly.

Isaacs has a great example of Doing it Right™ with his project npm-www

Note, I would advise against using any other library I mention below the line.


Original

express is just a light abstraction on top of connect. It basically handles the view engine for you.

geddy relies a lot more on the command line geddy-gen to auto generate files. It also seems to make use of more reflection.

geddy itself is tied to a MVC implementation where as express is not. Express can easily be combined with any known MVC library. Whether you prefer loose coupling or hard coupling in this manner is personal preference.

Personally I find connect a great library and find the express view engine a good abstraction. I also find the geddy documentation lacking.

geddy seems to lack an in build CSS compiler and the middleware. The middleware in connect/express is rather powerful.

express on the other hand does not have the notion of a model that geddy has nor does it support databases as easily as geddy. Geddy seems to bridge its own models to a few popular databases where as with express all database manipulation is done manually.

Personally I would recommend a stack of express(Server, view engine, middleware), now(Client-Server communication), cradle(CouchDB database abstraction), backbone(Lightweight MVC abstraction), underscore.

3 months later

Personally I would recommend a stack of express. You really don't need now, cradle, backbone or underscore. All of those either leak or get in the way.

Let me also mention that middleware is awesome. So use express or connect if you dont need routing / view engines.

6 months later

I don't think anyone uses geddy anymore. However flatiron is a great alternative to express. It's written by the nodejitsu team and is rock solid. Their article on Scaling Isomorphic JavaScript is a good read.

share|improve this answer
2  
@BOSS couchDB, mongoDB and redis are the popular database engines used with node.js. They are all noSQL document based. couchDB in particular uses map/reduce. It's a different way of querying handling databases and does not require writing SQL. I'll also recommend you take a look at underscore. – Raynos Apr 16 '11 at 2:02
91  
+1 for coming back 3 months later and revising your answer :) – shawnjan Sep 10 '11 at 20:07
1  
@TylerLong yes it is, but I havn't seen a question about Geddy on stackoverflow since. – Raynos Jan 18 '12 at 5:31
8  
I love the 3 to 6 month retrospective. +1 – Richard Clayton Feb 23 '12 at 13:42
2  
+1 for coming back 6 months later and revising your answer - again. – Ans Jul 17 '12 at 1:20
show 13 more comments

Just to add some Geddy perspective here

We've added a ton of features and removed some bloat to geddy in the past couple of months. It's worth a shot now if you'd like a more Rails-like framework for node.

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.