刚安装快递4.8.0。 通过&#34创建了一个应用程序;表达了newAp"然后" cd newAp&& npm install" 当我发出" npm start"或" node ./bin/www"或" DEBUG = newAp ./bin/www"
应用程序尚未入手。它给出了错误,如下所示:
> newAp@0.0.0 start c:\Users\Somenath\newAp
> node ./bin/www
events.js:72
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE
at errnoException (net.js:901:11)
at Server._listen2 (net.js:1039:14)
at listen (net.js:1061:10)
at Server.listen (net.js:1135:5)
at Function.app.listen (c:\Users\Somenath\newAp\node_modules\express\lib\app
lication.js:546:24)
at Object.<anonymous> (c:\Users\Somenath\newAp\bin\www:7:18)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
任何帮助都将受到高度赞赏。
有没有办法可以回到Express 3.x?
答案 0 :(得分:0)
您有另一个使用相同端口运行的程序。您可以杀死该程序或像这样运行express。
PORT=3001 npm start