Spaces:
Sleeping
Sleeping
File size: 504 Bytes
2bf7a2b 138f7fd 2bf7a2b 138f7fd 2bf7a2b 138f7fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
@echo off
title Minecraft WebSocket API Server
echo Starting Minecraft WebSocket API Server...
echo ==================================================
if not exist node_modules (
echo [INFO] node_modules not found. Installing dependencies...
call npm install
)
node src/server.js
echo.
echo ==================================================
echo Server process has stopped.
echo If this was an error, please take a screenshot now.
echo ==================================================
pause |