dni
Node utility to download and install (dni) a deployable module and install its dependencies.
Table of contents
- Installation
- Features
- Usage
- Example
Installation
npm install dni -g
Features
- Downloads a zipped(.tgz) deployable package.
- Unzips the downloaded package.
- Installs the dependencies from its package.json.
Usage 1 (module to be downloaded in the current working directory)
$ dni <module_name>
Example 1
$ dni npm-install-all
Usage 2 (module to be downloaded in some different directory)
$ dni <module_name> <path>
Example 2
$ dni npm-install-all "d:\test\abc"