I'm trying to script everything. How could I run multiple instances of npm start in one .cmd file for Windows ?
Example : I've got an API which runs with "npm start
" and a client app which also runs with "npm start
". I can easily run a single one with :
cd D:/my folder/...
npm start
But here, i would like to open a second command prompt in order to cd another folder and run another "npm start" with the same .cmd file.
Thank you !