npm ELIFECYCLE错误

我在ibm watson上部署了testing机器人( https://github.com/eciggaar/text-bot) ,当我尝试在本地使用CLI代码部署代码时,它会得到以下错误。

我正在使用Nodejs版本6.10.3和npm版本5.0.4

有人可以帮助我这个。

npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! text-bot@0.1.2 start: `node server.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the text-bot@0.1.2 start script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\PRERNA CHUGH\AppData\Roaming\npm-cache\_logs\2017-06-29T13_36_22_995Z-debug.log 

有时候,当你已经启动了你的web服务器的时候,如果你试图在另一个terminal(cmd)上再次运行npm命令, ELIFECYCLE出现ELIFECYCLE错误。 确保你没有任何其他的实例在同一个端口上运行。

尝试使用以下命令清理caching:使用Administrator / root npm cache clean并删除node_modules ,执行此步骤之后,尝试使用npm install --save再次安装包