Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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