parallelshell
parallelshell copied to clipboard
Run multiple shell commands in parallel
After having used docker-compose in the past, I really liked the way it showed output from all of the processes it runs. Here's a screenshot:  It would be...
The docs make a comparison with: ``` cmd1 & cmd2 & cmd3 ``` But really you should compare it with: ``` cmd1 & cmd2 & cmd3 & wait ``` This...
I am using parallelshell to perform end 2 end testing, like starting a server and then making a request from another script. Most of the time, there is no error,...
I see it pretty awkward. Same issue for `concurrently` ``` 21:03 $ `npm bin`/parallelshell '`npm bin`/eslint .' '`npm bin`/karma start ./karma.conf.js --single-run --reporters coverage' -w fs.js:691 return binding.lstat(pathModule._makeLong(path)); ^ Error:...
It'd be nice if parallelshell has a shortcut for running npm scripts, something like: ``` bash parallelshell 'npm run build' # old style parallelshell -n 'build' # shorthand style ```...
I made a repo to demonstrate the issue: https://github.com/nichoth/para-test This is a common scenario for me—working on multiple modules that use the same port. In one terminal, run `parallelshell "node...
I see that parallelshell responds to the SIGINT signal by cleanly shutting down all it's children. However, when stopped with the SIGTERM signal it simply exits, leaving all it's spawned...
Hi Keith Inspired by your blog post about scrapping grunt etc, and just using NPM, I happily using parallelshell. Unfortunately, there are many cases where I need to set the...
Dev
New version with all problems resolved :smile: