Y
Hacker News
new
|
ask
|
show
|
jobs
by
samrat
5205 days ago
Just wanted to ask: is there any kind of micro-frameworks for Node out there? Something comparable to Flask(for Python) or Sinatra(for Ruby)?
5 comments
glassx
5205 days ago
There's Express:
http://expressjs.com/
or
https://github.com/visionmedia/express
link
tikhonj
5205 days ago
Express is really nice. I was surprisingly productive almost immediately after I started using it, and enjoyed it throughout.
link
Aqueous
5205 days ago
I've been using Backbone.js for MV'C' in Node.js and re-using my models on the client side.
link
armnhammer
5205 days ago
Also, Geddy might be just as good if not better than backbone.
link
armnhammer
5205 days ago
Backbone actually looks pretty good.
link
firefoxman1
5205 days ago
There's a list here:
https://github.com/joyent/node/wiki/modules#wiki-web-framewo...
I've also found Grasshopper to be a great one:
https://github.com/tuxychandru/grasshopper
link
olegp
5205 days ago
If you prefer a synchronous style (using fibers), I ported Stick from RingoJS:
https://github.com/olegp/stick
link
swanson
5205 days ago
https://github.com/maccman/ace
link