Sails 服务器未启动

Sails server not started

我正在尝试使用以下命令 运行 我的应用程序:

forever start /var/www/app.js --prod

但是我有这个错误:

To run an app using `node app.js`, you usually need to have a version of `sails` installed in the same directory as your app.
To do that, run `npm install sails`

Alternatively, if you have sails installed globally (i.e. you did `npm install -g sails`), you can use `sails lift`.
When you run `sails lift`, your app will still use a local `./node_modules/sails` dependency if it exists,
but if it doesn't, the app will run with the global sails instead!

Sails 已安装在同一目录中。 Forever 在全球范围内安装。

我也考

node app.js --prod

但同样的错误,所以它不是因为永远。

我在节点 V4.1.1 和 npm v3.3.4 下。 sails lift 干得好。

您尝试过全局安装 Sails 吗?

cd /var/www
forever start app.js --prod

请试试这个方法,看看是否有效。

终于成功了! 一些 sails 依赖项没有正确安装,我已经删除了我项目的所有 node_modules 文件夹并再次 npm install 现在它正在工作。

错误信息不正确。

尝试检查应用程序中的 .sailsrc 文件 我的问题是逗号被遗漏了

"generators": {
    "modules": {},
}

删除逗号对我有用