vue project npm run dev lasting running Linux

touch run.dev.log
chmod u+w run.dev.log

Log file

nohup npm run dev > run.dev.log 2>run.dev.log & exit

Be sure to exit Console

Do not log

nohup npm run dev >/dev/null 2>&1 & exit

End lasting npm run dev

Check the port number 8080

Kill the process

kill -9 9071

Guess you like

Origin www.cnblogs.com/peipeiyu/p/12010221.html
Recommended