목록socket (1)
반업주부의 일상 배움사
socket.io :: koa, hapi, fastify
성능은 Hapi > Koa > Fastify 순. Koa import Koa from 'koa'; import Router from 'koa-router'; import { createServer } from 'http'; import { Server } from 'socket.io'; import serve from 'koa-static'; const app = new Koa(); const router = new Router(); router.get('/', async (ctx) => { ctx.body = 'Hello, world!'; }); const server = createServer(app.callback()); const socketServer = new Server(server, { c..
IT 인터넷/Node.js
2023. 4. 25. 19:28