Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cajacko/multi-commands

Npm module to run multiple commands in separate windows at the same time
https://github.com/cajacko/multi-commands

Last synced: 17 days ago
JSON representation

Npm module to run multiple commands in separate windows at the same time

Awesome Lists containing this project

README

        

# Multi Commands
Npm module to run multiple commands in separate windows at the same time

Useful for easily running multiple watch commands whilst developing e.g. Running a Node Server with Nodemon and developing the front end with a gulp watch task

Works on Windows and Mac OS

Install with
```
npm install multi-commands --save-dev
```
Or install globally with
```
npm install -g multi-commands
```
You can then run multiple commands using the multi command and enclosing your commands with double quotes:
```
multi "webpack --progress --colors --watch" "nodemon server.js --exec babel-node"
```