9 rindas
188 B
Batchfile
9 rindas
188 B
Batchfile
@echo off
|
|
title Remote Access - Server
|
|
echo Starting server on http://localhost:8090 ...
|
|
echo (Keep this window open. Press Ctrl+C to stop.)
|
|
echo.
|
|
cd /d "%~dp0server"
|
|
node server.js
|
|
pause
|