Sails.js: Realtime MVC framework for Node.js
21–30 of 107 posts
Re: Sails.js: Realtime MVC framework for Node.js
#22This looks great! The automatic API generation is a killer feature that makes me want to try this out sometime soon. Only thing that seems strange to me is adding the /create, /update, and /destroy GET endpoints -- why not keep it RESTful?
I can see the desire to be able to execute non-GET commands via the browser's address bar. Another way Sails could accomplish that would be to accept "?method=PUT|POST|DELETE" to mimic the desired HTTP method.
Re: Sails.js: Realtime MVC framework for Node.js
#23Please stop calling anything on the internet real-time. Response time is not guaranteed here.
Re: Sails.js: Realtime MVC framework for Node.js
#24Please stop calling anything on the internet real-time. Response time is not guaranteed here.
I guess you mean hard realtime. What usually on the web is called realtime is soft realtime IMHO.
Re: Sails.js: Realtime MVC framework for Node.js
#25Re: Sails.js: Realtime MVC framework for Node.js
#26I wish more people would read this blog post before writing another MVC framework in Node. http://eflorenzano.com/blog/2010/09/27/why-node-disappoints-...
Except without leveraging those V8 features, we don't have what makes node. The pace of invention today is based on iteration, building upon other successes and similar ideas - and its happening in real-time across a vast community. This is awesome. Personally, I love that we have choices like derby, meteor and potentially, sail. Every effort has pro's / con's that may or may not be ideal for a particular use case. I…
Re: Sails.js: Realtime MVC framework for Node.js
#27This looks incredibly cool, but if there is one thing that I've learned, it's that less magic is generally better when building a real production application (vs a weekend project). While typing something like 'sails generate model User' is nice, I literally have no idea what that just did. In the video it then shows a user creating new attributes on the model via a REST API - what??(he even mistakenly adds a bad att…
$ sails generate model User
$ git diffRe: Sails.js: Realtime MVC framework for Node.js
#28This looks great! The automatic API generation is a killer feature that makes me want to try this out sometime soon. Only thing that seems strange to me is adding the /create, /update, and /destroy GET endpoints -- why not keep it RESTful?
Re: Sails.js: Realtime MVC framework for Node.js
#29This looks incredibly cool, but if there is one thing that I've learned, it's that less magic is generally better when building a real production application (vs a weekend project). While typing something like 'sails generate model User' is nice, I literally have no idea what that just did. In the video it then shows a user creating new attributes on the model via a REST API - what??(he even mistakenly adds a bad att…
Re: Sails.js: Realtime MVC framework for Node.js
#30I love how this is put together and packaged. The graphics, nice intro video, and very clear docs. Well done! I wish more OSS projects would put more care in their docs. Adding more personality and character and just cleaning it up - making it feel more approachable.
This is pretty standard presentation for Node.js packages.
Thanks!