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)
- Host: GitHub
- URL: https://github.com/smallhelm/scriptsp
- Owner: smallhelm
- License: mit
- Created: 2015-05-29T21:15:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T19:18:42.000Z (over 7 years ago)
- Last Synced: 2024-11-28T15:41:37.856Z (over 1 year ago)
- Topics: build-tool, nodejs, npm-scripts
- Language: JavaScript
- Size: 37.1 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```

## 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