Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiospampinato/scex
A simple runner for npm scripts that can execute multiple scripts, in serial or in parallel.
https://github.com/fabiospampinato/scex
npm parallel runner script serial
Last synced: about 2 months ago
JSON representation
A simple runner for npm scripts that can execute multiple scripts, in serial or in parallel.
- Host: GitHub
- URL: https://github.com/fabiospampinato/scex
- Owner: fabiospampinato
- License: mit
- Created: 2022-10-29T01:07:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-24T16:28:50.000Z (over 1 year ago)
- Last Synced: 2024-10-31T17:35:44.319Z (3 months ago)
- Topics: npm, parallel, runner, script, serial
- Language: TypeScript
- Homepage:
- Size: 10.7 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Scex
A simple runner for npm scripts that can execute multiple scripts, in serial or in parallel.
## Install
```sh
npm install -g scex
```## Usage
Execute multiple npm scripts in serial:
```
scex -s foo bar baz
```Execute multiple npm scripts in parallel:
```
scex -p foo bar baz
```Execute multiple npm scripts directly, bypassing `npm run`:
```
scex -b -s foo bar baz
```## License
MIT © Fabio Spampinato