Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 483 Bytes

getting-started.md

File metadata and controls

20 lines (12 loc) · 483 Bytes

If you don't have Node.js yet, you'll want to make a quick pit stop here.

Installation

To install the latest stable release with the command-line tool:

sudo npm -g install sails

Creating a New Sails Project

Create a new app:

sails new testProject

Now lift the server:

cd testProject
sails lift

At this point, if you visit (http://localhost:1337/) you will see the default home page.

Now, let's get Sails to do cool stuff.