mirror of
https://github.com/lmg-anon/mikupad.git
synced 2026-07-09 17:19:17 +00:00
15 lines
No EOL
249 B
Batchfile
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 %* |