Sublime shuts down other running node processes when it runs node

I use sublime to start a node application, such as a local server.

as long as you use sublime to run other node applications, node will shut down and run the application again. So everything else is closed. How should I set it?

clipboard.png

Mar.20,2021

after more than a month, I found the answer by accident.

in the nodejs.sublime-build file
"cmd": ["chcp", "65001", "&", "taskkill", "/ F", "/ IM", "node.exe", "&", "node", "$file"]
in
, taskkill kills other node processes, but if removed, rerunning sever will cause an error.

you can remove taskkill, here, but be careful to start sever,cmd or other compilers in other ways.

clipboard.png

Menu