A small utility to recursively run npm install
in any child directory that has a package.json
file excluding sub directories of node_modules
.
$ npm i -g recursive-install
$ npm-recursive-install
$ npm-recursive-install --skip-root
- Will not install in process.cwd()
$ npm-recursive-install --rootDir=lib
- Will only install from lib directory
$ npm-recursive-install --production
- Will not install dev dependencies
A small utility to recursively run npm ci
in any child directory that have both a package.json
as well as a package-lock.json
file, excluding sub directories of node_modules
.
$ npm i -g recursive-ci
$ npm-recursive-ci
$ npm-recursive-ci --skip-root
- Will not install in process.cwd()
$ npm-recursive-ci --rootDir=lib
- Will only install from lib directory
$ npm-recursive-ci --production
- Will not install dev dependencies
MIT