Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Latest commit

 

History

History
24 lines (14 loc) · 441 Bytes

getting-started.md

File metadata and controls

24 lines (14 loc) · 441 Bytes

Getting Started

Installation

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

sudo npm -g install sails

On Windows, you don't need 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.