原文http://my.oschina.net/chenhao901007/blog/312367
npm i -g express serve-favicon morgan cookie-parser body-parser kerberos mongoose
(注意:kerberos不安装,mongoose会卡住)
2. 调试
下面讲讲如何调试服务器端的代码:
我们最好借助一个叫node-inspector的工具包
npm i -g node-inspector //安装node-inspector
然后在cmd里运行
node-inspector
再新打开一个cmd,cd到项目hello-world目录下
node --debug ./bin/www (或者 node --debug-brk ./bin/www , 旧版本express创建的node程序请使用 node --debug app.js)
在浏览器里打开http://127.0.0.1:8080/debug?port=5858
再新建窗口打开http://127.0.0.1:3000/
就在浏览器可以调试服务器端代码。
git clone https://github.com/guille/chat-example.git
转载于:https://blog.51cto.com/sunrain990/1676210