https://github.com/ratson/npm-ig
Install global dependencies from package.json
https://github.com/ratson/npm-ig
Last synced: about 1 year ago
JSON representation
Install global dependencies from package.json
- Host: GitHub
- URL: https://github.com/ratson/npm-ig
- Owner: ratson
- Created: 2017-01-05T12:59:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T13:00:55.000Z (over 9 years ago)
- Last Synced: 2025-03-19T05:31:15.767Z (about 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# npm-ig
Install global dependencies from `package.json`
## Features
* Install many global packages at once.
* Install exact version of packages.
## Installation
```sh
npm install -g npm-ig
```
## Usage
Create `package.json`,
```json
{
"private": true,
"preferGlobal": true,
"dependencies": {
"add-dependency": "1.1.0",
"npm": "4.1.1"
}
}
```
Then run in the same directory,
```sh
npm-ig
```