1// The tool is written in Node.js, but you can use it to run any commands.
2npm install -g concurrently
3
4// or if you are using it from npm scripts:
5npm install concurrently --save
6
7// Remember to surround separate commands with quotes:
8concurrently "yarn run script1" "yarn run script2" "yarn run script3"
9
10// In package.json, escape quotes:
11"start": "concurrently \"command1 arg\" \"command2 arg\""