关于socket.io的学习和测试
- 先安装依赖
npm i -s socket.io
- 启动服务
node server.js
- 浏览器打开index.html
2018.10.16
- 安装依赖
npm i -s socket.io-client
- 在模块中使用
import io from 'socket.io-client'
let socket = io('ws://localhost:3000');
socket.emit('login', {});
学习参考:Socket.IO英文文档