This commit is contained in:
Harry
2026-04-25 10:09:16 +08:00
committed by GitHub
commit bf215c4b9f
15 changed files with 2482 additions and 0 deletions

22
启动服务器.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
chcp 65001 >nul
echo ====================================
echo 点名系统启动脚本
echo ====================================
echo.
echo 正在检查Node.js...
node -v >nul 2>&1
if %errorlevel% neq 0 (
echo [错误] 未检测到Node.js请先安装Node.js
echo 下载地址: https://nodejs.org/
pause
exit /b 1
)
echo Node.js已安装
echo.
echo 正在启动服务器...
echo.
node server.js
pause