目前完成了登录退出,多人聊天室,单人聊天,新消息提醒等基本功能,但用户列表还存在一些问题。
- 新建一个vue项目:
vue init webpack project
- 在项目中新建一个文件夹放服务端,安装服务端依赖:
npm install express --save
npm install socket.io --save
新建一个server.js创建服务器并监听消息的通信。
const express = require('express');
const app = express();
var http = require('http');
// 用http模块创建一个服务并把express的实例挂载上去
var server = http.Server(app);
// 引入socket.io并立即实例化,把server挂载上去
var io = require('socket.io')(server);
var server = server.listen(4001, function () {
console.log('服务端启动成功!端口4001');
});
其中实现消息通信的关键是:
- 利用socket.io创建io对象
- 通过io的on方法监听事件,emit方法发送事件
启动服务器:
node server
- 前端通过socket与服务器通信
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm test
For a detailed explanation on how things work, check out the guide and docs for vue-loader.