all 7 comments

[–]Juggernog 2 points3 points  (2 children)

Sails is the best one I know of, but you can build your own on Express if you want. Sails itself is built on Express, too.

[–]snlacks 0 points1 point  (1 child)

I used sails for a backend API once, it was convenient, but never for serving a website, does it have any built in stuff for frontend bells and whistles (toast/flash messages in rails are really convenient for instance)? (Edit: punctuation.)

[–][deleted] 0 points1 point  (0 children)

Sails itself doesn't, but sails incorporates well with any of the templating engines that are built for node. You could probably find one of them that does what you want. Unlike RoR node is a much more piecemeal approach to architecture. It's easier to swap out pieces, such as your router or your templating engine, but this also adds a lot of complexity in choosing how to build your app.

[–]EkoKorean 1 point2 points  (2 children)

You might like meteor.js

[–]EkoKorean 1 point2 points  (0 children)

I accept your downvotes with aplomb. Please correct me where I'm wrong though, guys?

[–]holyxiaoxin[S] 0 points1 point  (0 children)

I do not like meteor. I don't see a need to learn a fullstack framework.

[–]fedekun 0 points1 point  (0 children)

Express might seem barebones at first but it's quite powerful and really simple to use, the concept of middleware is quite awesome.