1 Star 0 Fork 0

长岛冰茶/游泳客服连接服务器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 829 Bytes
一键复制 编辑 原始数据 按行查看 历史
长岛冰茶 提交于 2022-02-04 11:45 . 新建仓库
const express = require('express');
const app = express();
//把socket.io挂载到express上
//获取express底层的http服务器
const http = require('http').createServer(app);
//加载socket.io模块时,把路由挂载到底层的http服务之上
const serversocket = require('socket.io')(http, { cors: true })
const cors = require('cors');
//设置public目录为静态资源托管目录
app.use(express.static('public'))
app.use(cors())
serversocket.on('connection', (socket) => {
console.log('有客户端进来了:' + socket.id);
socket.on('massage', function(res) {
console.log(res);
serversocket.emit('massage', res)
});
socket.on('answer', (res) => {
serversocket.emit('answer1', res)
})
});
http.listen(8081, () => {
console.log('server is running.......0')
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/keepyang/continueserver.git
git@gitee.com:keepyang/continueserver.git
keepyang
continueserver
游泳客服连接服务器
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385