Sails.js: Difference between revisions

From air
Jump to navigation Jump to search
(Created page with "http://sailsjs.org/ ''Sails makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails,...")
 
No edit summary
Line 2: Line 2:


''Sails makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails, but with support for the requirements of modern apps: data-driven APIs with a scalable, service-oriented architecture. It's especially good for building chat, realtime dashboards, or multiplayer games; but you can use it for any web application project - top to bottom. ''
''Sails makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails, but with support for the requirements of modern apps: data-driven APIs with a scalable, service-oriented architecture. It's especially good for building chat, realtime dashboards, or multiplayer games; but you can use it for any web application project - top to bottom. ''

=Get Started=
http://sailsjs.org/get-started
==Installation==
<pre>
sudo npm -g install sails
</pre>

==First project==
<pre>
sails new testProject
cd testProject
sails lift
</pre>

visit http://localhost:1337

Revision as of 06:50, 23 August 2015

http://sailsjs.org/

Sails makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails, but with support for the requirements of modern apps: data-driven APIs with a scalable, service-oriented architecture. It's especially good for building chat, realtime dashboards, or multiplayer games; but you can use it for any web application project - top to bottom.

Get Started

http://sailsjs.org/get-started

Installation

sudo npm -g install sails

First project

sails new testProject
cd testProject
sails lift

visit http://localhost:1337