@echo off chcp 65001 >nul 2>&1 cd /d "%~dp0" where node >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] Node.js not found. Please install Node.js first. echo https://nodejs.org/ pause exit /b 1 ) if not exist node_modules ( echo Installing dependencies... npm install ) echo Starting CC-Web... node server.js pause