@echo off title Class Generator - Development Server echo. echo 🚀 Starting Class Generator Development Server... echo. :: Check if Node.js is installed node --version >nul 2>&1 if %errorlevel% neq 0 ( echo ❌ Node.js is not installed or not in PATH echo Please install Node.js from https://nodejs.org/ pause exit /b 1 ) :: Start the server echo ✅ Node.js found echo 🔄 Starting server... echo. node server.js :: If we get here, the server stopped echo. echo 👋 Server stopped pause