concurrently icon indicating copy to clipboard operation
concurrently copied to clipboard

Run commands concurrently. Like `npm run watch-js & npm run watch-less` but better.

Results 90 concurrently issues
Sort by recently updated
recently updated
newest added

#419 touches on being able to run two commands within a single parallel step in series, but is orchestrating something like the [npm-run-all](https://www.npmjs.com/package/npm-run-all) invocation ``` npm-run-all --parallel clean:* --serial build:fa...

As added by Node 22. [Release announcement](https://nodejs.org/en/blog/announcements/v22-release-announce#running-packagejson-scripts). I suggest it to look like `concurrently node:foo node:*`

enhancement
pull request welcome

I'm trying to run a docker container along with a node.js server, and I would like to stop the container when the user stops the node.js server script. ``` "dev":...

enhancement

Fixes #436 Backwards-compatible because `date-fns` follows Unicode LDML too (well, more or less https://blog.date-fns.org/v2-unicode-tokens/)

MacOS and Linux at least. Sounds like `concurrently` tool reaction on receiving SIGINT is exiting with code 0 (instead of exiting with e.g. code 130 as the best-practice reaction on...

**Description:** I'm usign concurrently for my azure fucntions node.js project. I need to compile my typescript and run the azure functions at the same time. here is my package.json script...

bug

## Regular usage works as expected ```shell bun install concurrently bun concurrently "pwd" "whoami" # produces: [0] /c/dev [1] loki-sff\loki [1] whoami exited with code 0 [0] pwd exited with...

pull request welcome
bug (potential)

4.1.0 This is my output. All the processes are exiting with 0 or SIGTERM. But the final exit code is non-zero. ``` [test ] npm run test:docker:sleep exited with code...

pending for input

Description: switching from yargs to commander would reduce dependencies. commander has 0, yargs has 16 Every downstream dependency adds work as all of them need updates and all of them...

pending for input

I have tried: ``` bash concurrently --kill-others "npm run build:watch" "npm run start:pm2" -r --hide "0" # OR concurrently --kill-others "npm run build:watch" "npm run start:pm2" -r --hide 0 ```...

bug
pull request welcome