When i use shelljs
, How can i execute script by opening another shell window or tab ?
I need to start api server and build app both. like
var shell = require('shelljs');
...
shell.exec('node server.js');
shell.exec('npm run build')
When i use shelljs
, How can i execute script by opening another shell window or tab ?
I need to start api server and build app both. like
var shell = require('shelljs');
...
shell.exec('node server.js');
shell.exec('npm run build')