# installing

> A module for installing node modules programmatically based on your package.json

Latest version **1.0.0** (published 2015-10-01) · none license · 0 weekly downloads

## Install

```sh
npm install installing
pnpm add installing
yarn add installing
bun add installing
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-10-01 |
| First published | 2015-10-01 |
| Weekly downloads | 0 |
| License | none |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Michael Wilson |
| Maintainers | shelter |
| Keywords | install |

## Links

- npm: https://www.npmjs.com/package/installing
- npm.io page: https://npm.io/package/installing

## Recent versions

- 1.0.0 (latest) — 2015-10-01

## README

# installing #

A module for installing node modules programmatically based on your package.json

## Usage

Firstly, install via NPM:

```bash
npm install --save installing
```
### go( [callback] ) 

Install's all of the modules inside your package.json file

```javascript
installing.go(function(data) {

  console.log(data);

});
```

### run( command, [callback] )

Runs a command and outputs the data received

```javascript
installing.run("npm install --save request", function(data) {

  console.log(data);

});
```

---
_Source: https://npm.io/package/installing · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
