Closed billie66 closed 9 years ago
指的是 socket.io/examples/chat 这个应用
首先,要到 socket.io/ 这里运行 npm install,不然的话就会有一堆的 can not find module xxx 错误,在 chat/ 中 local 安装或 global 安装都解决不了,因为 chat/index.js 中有这样的语句:
socket.io/
can not find module xxx
chat/
chat/index.js
var io = require('../..')(server);
socket.io/examples/chat/
nodemon index.js
指的是 socket.io/examples/chat 这个应用
首先,要到
socket.io/
这里运行 npm install,不然的话就会有一堆的can not find module xxx
错误,在chat/
中 local 安装或 global 安装都解决不了,因为chat/index.js
中有这样的语句:var io = require('../..')(server);
socket.io/examples/chat/
里面在运行一下 npm install 安装 expressnodemon index.js
,就可以到 3000 端口看效果了。