入门教程
安装
使用命令行工具安装最新稳定版:
sudo npm -g install sails
在 Windows
上(或者在有Homebrew
的Mac OS
系统上),不需要使用sudo
:
npm install -g sails
创建sails
新工程
创建新应用:
sails new testProject
启动服务器:
cd testProject
sails lift
这时,访问 http://localhost:1337/
会看到默认主页。
现在,可以让Sails
做点更酷的事情了。