📜  安装 socket.io - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:51.584000             🧑  作者: Mango

代码示例4
const express = require("express");
const http = require("http");
const socketIo = require("socket.io");
const port = process.env.PORT || 8001;
const index = require("./routes/index");
const app = express();
app.use(index);
const server = http.createServer(app);
const io = socketIo(server); // < Interesting!
const getApiAndEmit = "TODO";