The node.js ecosystem
wiki.github.com
The node.js ecosystem
1–8 of 8 posts
Re: The node.js ecosystem
#2Sometimes no options is better than many options.
Re: The node.js ecosystem
#3I took a look at node.js for my latest project because it could seriously benefit from the asynchronous nature. I found that the ecosystem was too fractured for me to be able to quickly determine what would work best. What's the best node stack for someone coming from the rails world to use? Sometimes no options is better than many options.
Re: The node.js ecosystem
#4I took a look at node.js for my latest project because it could seriously benefit from the asynchronous nature. I found that the ecosystem was too fractured for me to be able to quickly determine what would work best. What's the best node stack for someone coming from the rails world to use? Sometimes no options is better than many options.
There are web frameworks but it's not really much trouble to roll your own, tailored to your needs. Depends on your time budget of course. I'd love to see a high-level Rails-esque framework using node-machine, but there isn't one yet.
[1] http://github.com/tautologistics/nodemachine
[2] http://bitbucket.org/justin/webmachine/wiki/Home
[3] http://bitbucket.org/justin/webmachine/wiki/BigHTTPGraph
Re: The node.js ecosystem
#5I took a look at node.js for my latest project because it could seriously benefit from the asynchronous nature. I found that the ecosystem was too fractured for me to be able to quickly determine what would work best. What's the best node stack for someone coming from the rails world to use? Sometimes no options is better than many options.
I recommend Express.js ( http://www.expressjs.com ). It's Sinatra-like and gives you static pages, sessions, and HAML/SASS templating. I've been using it with the project node-mongodb-native leveraging MongoDB as a datastore (although the Mongoose project looks like it might be a cleaner interface: http://www.learnboost.com/mongoose/ ).
Re: The node.js ecosystem
#6Re: The node.js ecosystem
#7I took a look at node.js for my latest project because it could seriously benefit from the asynchronous nature. I found that the ecosystem was too fractured for me to be able to quickly determine what would work best. What's the best node stack for someone coming from the rails world to use? Sometimes no options is better than many options.
When node 0.2.0 is released, we will have a lot more stability in node-core (though things are getting there now). Until then, this is still an "edge" project and should be treated accordingly. For instance, check out the recent addition of buffers and unification of stream interfaces.