2016-09-21 45 views
1

我很困惑a)实际的错误在这里 - 看起来有些人有这个缺失的模块仍然可以启动他们的服务器,b)我该如何解决这个问题?Node.js无法启动服务器

我已经试过:

rm -rf node_modules 
npm cache clean 
npm install 

NPM-提供的debug.log没有额外的错误/显然有用的信息。这是一个使用Express的初学者设置,它对MongoDB进行一个小型查询。

NPM启动输出:

[email protected]:~/Documents/node/nodetest1$ npm start 

> [email protected] start /home/david/Documents/node/nodetest1 
> node ./bin/www 

{ [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' } 
js-bson: Failed to load c++ bson extension, using pure JS version 
Port 3000 is already in use 

npm ERR! Linux 4.4.0-36-generic 
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "start" 
npm ERR! node v4.5.0 
npm ERR! npm v3.10.7 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] start: `node ./bin/www` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] start script 'node ./bin/www'. 
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 nodetest1 package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node ./bin/www 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs nodetest1 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls nodetest1 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /home/david/Documents/node/nodetest1/npm-debug.log 

回答

0
Port 3000 is already in use 

请尝试杀死在端口3000上运行旧的进程,或者尝试使用其他端口。