All Projects β†’ mysticatea β†’ Npm Run All

mysticatea / Npm Run All

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Npm Run All

Redrun
✨🐌 🐎✨ fastest npm scripts runner
Stars: ✭ 85 (-98.11%)
Mutual labels:  npm-scripts, cli, cli-command, parallel, series, multi-platform, npm
Cpx
A cli tool to watch and copy file globs.
Stars: ✭ 394 (-91.24%)
Mutual labels:  cli, cli-command, npm, npm-package, npm-module
Nls
Missing inspector for npm packages.
Stars: ✭ 44 (-99.02%)
Mutual labels:  npm-scripts, cli, npm, npm-package
Singlespotify
🎡 Create Spotify playlists based on one artist through the command line
Stars: ✭ 254 (-94.35%)
Mutual labels:  cli, npm, npm-package, npm-module
Yarpm
CLI tool to run npm scripts with either npm or yarn, depending on how it was started
Stars: ✭ 13 (-99.71%)
Mutual labels:  npm-scripts, cli, npm, npm-package
Awesome Node Utils
some useful npm packages for nodejs itself
Stars: ✭ 51 (-98.87%)
Mutual labels:  npm-scripts, npm, npm-package, npm-module
Jsonexport
{} β†’ πŸ“„ it's easy to convert JSON to CSV
Stars: ✭ 208 (-95.37%)
Mutual labels:  cli, npm, npm-package, npm-module
Getme
CLI utility for everyday tasks. With getme you get weather, forecast, currency rate, upload files, IP address, word definitions, text translations, internet speed, do google searches, get inspirational quotes and get Chuck Norris jokes
Stars: ✭ 118 (-97.38%)
Mutual labels:  cli, npm, npm-package
Ohshitgit
⁉️Oh shit! A cli tool to help you unfuck your git mistakes
Stars: ✭ 135 (-97%)
Mutual labels:  cli, npm, npm-package
Cash Cli
πŸ’°πŸ’° Convert currency rates directly from your terminal!
Stars: ✭ 168 (-96.26%)
Mutual labels:  cli, npm, npm-package
Ultra Runner
πŸƒβ›° Ultra fast monorepo script runner and build tool
Stars: ✭ 496 (-88.97%)
Mutual labels:  npm-scripts, parallel, npm
Ngx Smart Modal
Modal/Dialog component crafted for Angular
Stars: ✭ 256 (-94.31%)
Mutual labels:  npm, npm-package, npm-module
Eslint Plugin Vue
Official ESLint plugin for Vue.js
Stars: ✭ 3,592 (-20.11%)
Mutual labels:  npm, npm-package, npm-module
Forge Node App
πŸ› πŸ“¦πŸŽ‰ Generate Node.js boilerplate with optional libraries & tools
Stars: ✭ 90 (-98%)
Mutual labels:  cli, npm-package, npm-module
Np
A better `npm publish`
Stars: ✭ 6,401 (+42.37%)
Mutual labels:  cli, npm, npm-package
Ts ci
βœ… Continuous integration setup for TypeScript projects via GitHub Actions.
Stars: ✭ 225 (-95%)
Mutual labels:  npm, npm-package, npm-module
Darkmode.js
πŸŒ“ Add a dark-mode / night-mode to your website in a few seconds
Stars: ✭ 2,339 (-47.98%)
Mutual labels:  npm, npm-package, npm-module
Homebridge Wol
A Wake on Lan plugin for Homebridge
Stars: ✭ 150 (-96.66%)
Mutual labels:  npm, npm-package, npm-module
Reactopt
A CLI React performance optimization tool that identifies potential unnecessary re-rendering
Stars: ✭ 1,975 (-56.07%)
Mutual labels:  npm, npm-package, npm-module
Better Npm Run
πŸƒβ€β™‚οΈ Better NPM scripts runner
Stars: ✭ 635 (-85.88%)
Mutual labels:  npm-scripts, cli-command, npm
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.

‴️ Motivation

  • Simplify. The official npm run-script command cannot run multiple scripts, so if we want to run multiple scripts, it's redundant a bit. Let's shorten it by glob-like patterns.
    Before: npm run clean && npm run build:css && npm run build:js && npm run build:html
    After: npm-run-all clean build:*
  • Cross platform. We sometimes use & to run multiple command in parallel, but cmd.exe (npm run-script uses it by default) does not support the &. Half of Node.js users are using it on Windows, so the use of & might block contributions. npm-run-all --parallel works well on Windows as well.

πŸ’Ώ Installation

$ npm install npm-run-all --save-dev
# or
$ yarn add npm-run-all --dev
  • It requires Node@>=4.

πŸ“– Usage

CLI Commands

This npm-run-all package provides 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 shorthand commands. run-s is for sequential, run-p is for parallel. We can make simple plans with those commands.

Yarn Compatibility

If a script is invoked with Yarn, npm-run-all will correctly use Yarn to execute the plan's child scripts.

Node API

This npm-run-all package provides Node API.

πŸ“° Changelog

🍻 Contributing

Welcomeβ™‘

Bug Reports or Feature Requests

Please use GitHub Issues.

Correct Documents

Please use GitHub Pull Requests.

I'm not familiar with English, so I especially thank you for documents' corrections.

Implementing

Please use GitHub Pull Requests.

There are some npm-scripts to help developments.

  • npm test - Run tests and collect coverage.
  • npm run clean - Delete temporary files.
  • npm run lint - Run ESLint.
  • npm run watch - Run tests (not collect coverage) on every file change.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].