目录
- 安装NodeJS
- 安装WebSocket-Node
安装NodeJS
参考这里:
curl -sL https://rpm.nodesource.com/setup | bash - yum install -y nodejs
安装WebSocket-Node
参考这里:
npm install websocket
工具
forever是nodejs的守护进程,能够启动,停止,重启我们的app应用
forever start app.js forever start -o console.log -e console.error app.js forever restartall forever stopall forever list
遇到的问题
Specified protocol was not requested by the client
ws = new WebSocket(host); // 改为 ws = new WebSocket(host,'echo-protocol');