antonvasilenko / npm-run-all

A CLI tool to run multiple npm-scripts in parallel or sequential.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

index npm-run-all run-s run-p Node API

npm-run-all

npm version Downloads/month Build Status Build status Coverage Status Dependency Status

A CLI tool to run multiple npm-scripts in parallel or sequential.

> npm-run-all clean lint build:*
> npm-run-all clean --parallel "build:* -- --watch"

Installation

npm install npm-run-all
  • Requires Node@>=0.10 and npm@>=2
  • The npm-run-all package introduces 3 CLI commands: npm-run-all, run-s, and run-p.

CLI Commands

This npm-run-all package introduces 3 CLI commands.

The main command is npm-run-all. We can make complex plans with npm-run-all command.

Both run-s and run-p are the shorthand commands. run-s is for sequential, run-p is for parallel. We can make simple plans with those commands.

Node API

This npm-run-all package provides Node API.

About

A CLI tool to run multiple npm-scripts in parallel or sequential.

License:MIT License


Languages

Language:JavaScript 100.0%