npmbrace
v0.2.0
Published
Node Package Manager with brace expansion that switches between NPM versions, NPM 2 to NPM 6
Downloads
3
Readme
npmbrace
A thin wrapper around npm
that provides cross-platform brace expansion syntax and allows to switch between NPM versions.
Now both *nix and Windows users are able to do something like:
nb i -S @angular/{core,common,router}@~6.0.0
Benefits
nb
command that is shorter and more ergonomic thannpm
itself- cross-platform brace expansions
- switch between NPM 2, NPM 3, NPM 4, NPM 5 and NPM 6 versions on the fly.
Installation
npm i -g npmbrace
Usage
Accepts same arguments as npm
. Optional first numeric argument allows to switch between NPM versions. Versioned NPM commands have nb2
to nb6
aliases.
Default NPM installation is used:
npmbrace i -S @angular/{core,common,router}@~6.0.0
A shortcut:
nb i -S @angular/{core,common,router}@~6.0.0
NPM 2 is used:
nb 2 i -S @angular/{core,common,router}@~6.0.0
A shortcut:
nb2 i -S @angular/{core,common,router}@~6.0.0