Socket
Book a DemoInstallSign in
Socket

npm-remaining-args

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-remaining-args

Simplify use of remaining args in npm scripts

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1
-80%
Maintainers
1
Weekly downloads
 
Created
Source

npm-remaining-args

Simplify use of remaining args in npm scripts

This package provides a simple command that can be used inside npm scripts to grab all the remaining arguments passed to npm run. These can then be inserted anywhere in the command, not just at the end.

Install

$ npm install --save-dev npm-remaining-args

Usage

Example package.json:

{
    ...
    "scripts": {
        "start": "echo started && echo $(npm-remaining-args) && echo done && npm-no-args"
    }
    ...
}

Example invocation:

$ npm run start -- Hello World
start
Hello World
done

Keywords

npm

FAQs

Package last updated on 15 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts