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.