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

https://github.com/smallhelm/scriptsp

Run multiple package.json scripts in parallel (for development)
https://github.com/smallhelm/scriptsp

build-tool nodejs npm-scripts

Last synced: 10 months ago
JSON representation

Run multiple package.json scripts in parallel (for development)

Awesome Lists containing this project

README

          

# scriptsp
Run multiple package.json scripts in parallel (for development)

## How to use it
install
```sh
$ npm install --save-dev scriptsp
```
package.json
```js
...
"scripts": {
"dev-server": "nodemon ....",
"watch-test": "...some test watching script...",
"watch-js": "watchify ...",

"dev": "scriptsp dev-server watch-test watch-js"
}
...
```
run it
```sh
$ npm run dev
```
![scriptsp demo](https://raw.githubusercontent.com/smallhelm/scriptsp/master/demo.png)

## Usage
```

USAGE: scriptsp [--raw] ...

-r, --raw
simply pipe the output from the scripts, no fancy output stuff

i.e.
$ scriptsp start test watch-js

```

## License
MIT