I would like to launch my development server using a single launch script in a split console with ConEmu. It can be a ConEmu task, a batch script, or whatever it takes. I have achieved this with Gulp but find that solution to be overkill.
I need to execute
cd C:\Repo\myApp\frontEnd
npm start
I would then like to split the window cmd -new_console:s50H
And without waiting for npm start
to finish, because it does not, execute the following in the new window. Syncronously so to speak.
cd C:\Repo\myApp\backEnd -new_console:s50H
node backEnd.js