生命周期是什么意思?

这是我的应用程序代码:https://gist.github.com/samholmes/388ca4552c5936b52c5d

当我运行'blast-电子邮件'命令时,它会运行一段时间,直到很快崩溃并出现错误:

npm ERR! Linux 3.2.0-4-amd64
npm ERR! argv "/root/.nvm/versions/io.js/v1.6.1/bin/iojs" "/root/.nvm/versions/io.js/v1.6.1/bin/npm" "run" "live"
npm ERR! node v1.6.1
npm ERR! npm  v2.7.1
npm ERR! code ELIFECYCLE
npm ERR! emailer@0.0.0 live: `NODE_ENV=production node app.js`
npm ERR! Exit status 137
npm ERR! 
npm ERR! Failed at the emailer@0.0.0 live script 'NODE_ENV=production node app.js'.
npm ERR! This is most likely a problem with the emailer package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     NODE_ENV=production node app.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls emailer
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /apps/emailer/npm-debug.log

npm-debug.log文件也包含在gist中。

我正在寻找两个答案中的一个:生命周期是什么意思?(或)为什么我在我的应用程序代码中得到错误?


当前回答

同样,我认为这个错误是RAM太小的结果。我加大了虚拟机的RAM,错误消失了。

其他回答

它基本上是说,它不能生成你的进程不是由于权限,而是由于你的脚本中的一个错误。源

执行NODE_ENV=生产节点app.js没有任何问题吗?

当运行Webpack构建时,我得到了类似的错误,因为节点不理解旧版本上的异步等待关键字。我添加了webpack babel-plugin-transform-async-to-generator,然后问题就解决了。这就用承诺代替了他们。

如果你像我一样来到这里,在尝试React入门指南时收到类似的错误,你可能想知道这个问题可能是由于没有安装Watchman造成的。在这里下载它,或者用Homebrew和brew install watchman安装它,然后重试:https://facebook.github.io/watchman/docs/install.html

PS:你可能想先做一个酿造更新。

同样,我认为这个错误是RAM太小的结果。我加大了虚拟机的RAM,错误消失了。

当在WordPress主题上工作时,我得到了相同的ELIFECYCLE错误,输出略有不同:

npm ERR! Darwin 14.5.0
npm ERR! argv "/usr/local/Cellar/node/7.6.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v7.6.0
npm ERR! npm  v3.7.3
npm ERR! code ELIFECYCLE
npm ERR! foundationsix@1.0.0 postinstall: `bower install && gulp build`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the foundationsix@1.0.0 postinstall script 'bower install && gulp build'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the foundationsix package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     bower install && gulp build

在再次尝试npm install后,我又尝试了bower install。当这是成功的,我尝试了gulp构建,这也工作。

现在一切都很好。不知道为什么在&&失败的情况下分别运行每个命令,但也许其他人会发现这个答案很有用。