Files
LingChair/server/main.js
2025-03-16 00:13:51 +08:00

38 lines
924 B
JavaScript

import http from 'node:http'
// import https from 'node:https' // 暂时
import express from 'express'
import { Server as SocketIoServer } from 'socket.io'
// 类型提示
import { TheWhiteSilkParams, CallbackMessage } from './Types.js'
const app = express()
const httpApp = http.createServer(app)
const io = new SocketIoServer(httpApp, {})
const events = {}
import { UserApi } from './api/User.js'
for (let i of [
UserApi,
]) {
for (let i2 of Object.keys(i)) {
events[i2] = i[i2]
}
}
io.on("connection", (socket) => {
socket.on('the_white_silk',
/**
* @param { TheWhiteSilkParams } params
* @param { Function<> } callback
*/
(params, callback) => {
if ((params || callback) == null || typeof callback != Function) return;
(events[params.method] || (() => callback({mess})))(params.args)
}
)
})
httpApp.listen(80)