File size: 151 Bytes
2ba1dc3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
@echo off

IF NOT EXIST node_modules (
    echo Installing npm packages...
    call npm install
)

cls
echo Starting the application...
call npm start