Npm Install in SubDirectories. Yes, it's that simple. Use it like: `nisd [subdirs...]` (Example: `nisd client server scripts`)
npm install nisdnisd [options] (Example: nisd --async client server scripts)Click here for the general version!
Click here for the yarn install version!
Usage: nisd [options] Options:
-a, --async Execute npm async across all folders, output will be a mess
-e, --allowErrors Allow errors (at default we stop when there is one). NOTE: always true when in async mode!
-h, --help output usage information
`Examples
Cli:
nisd --async client server testSetup/mockServerPackage.json:
`json
{
"name": "Root",
"version": "0.0.1",
"description": "mainFolder",
"scripts": {
"postinstall": "nisd client server"
}
}
``