mikupad/server/start.bat
2024-04-15 18:53:41 -03:00

15 lines
No EOL
249 B
Batchfile

@echo off
where node >nul 2>&1
if %errorlevel% neq 0 (
echo Node.js is not installed.
exit /b 1
)
where npm >nul 2>&1
if %errorlevel% neq 0 (
echo npm is not installed.
exit /b 1
)
call npm install --no-audit
call node server.js %*