# check-repo-npm-updates

> Checks all of your GitHub repos for see if their dependencies are up-to-date.

Latest version **0.1.1** (published 2015-04-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install check-repo-npm-updates
pnpm add check-repo-npm-updates
yarn add check-repo-npm-updates
bun add check-repo-npm-updates
```

Provides the command `check-repo-npm-updates`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2015-04-09 |
| First published | 2015-04-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 (+6 in 2 direct dependencies) |
| Install scripts | no |
| Author | Chris Barber |
| Maintainers | cb1kenobi |

## Links

- npm: https://www.npmjs.com/package/check-repo-npm-updates
- Repository: https://github.com/cb1kenobi/check-repo-npm-updates
- Issues: https://github.com/cb1kenobi/check-repo-npm-updates/issues
- npm.io page: https://npm.io/package/check-repo-npm-updates

## Dependencies (6)

- [npm](https://npm.io/package/npm.md) ^2.7.5
- [async](https://npm.io/package/async.md) ^0.9.0
- [colors](https://npm.io/package/colors.md) ^1.0.3
- [github](https://npm.io/package/github.md) ^0.2.3
- [semver](https://npm.io/package/semver.md) ^4.3.3
- [commander](https://npm.io/package/commander.md) ^2.7.1

## Recent versions

- 0.1.1 (latest) — 2015-04-09
- 0.1.0 — 2015-04-09

## README

# Check Repo NPM Updates

Command line tool for checking all your GitHub repos for NPM updates.

## Usage

```
check-repo-npm-updates <github oauth token> [<repo>]
```

## Programmatic Usage

You can also directly `require()` this module and do whatever you want
with the data:

```javascript
require('check-repo-npm-updates')
    .check('github oath token', function (err, repos, packages) {
        if (!err) {
            // do something with repos
        }
    });
```

Or if you only want to check a specific repo:

```javascript
require('check-repo-npm-updates')
    .check('github oath token', 'myproject', function (err, repos, packages) {
        if (!err) {
            // do something with repos
        }
    });
```

The `repos` value looks like this:

```json
{
    "myproject": {
        "url": "https://github.com/myuser/myproject",
        "description": "My Project",
        "fork": false,
        "private": false,
        "default_branch": "master",
        "branches": {
            "master": {
                "packageName": "myproject",
                "packageVersion": "1.0.0",
                "dependencies": {
                    "async": "0.9.0",
                    "colors": "1.0.3",
                    "moment": [ "2.8.3", "2.10.0" ],
                    "node-uuid": [ "1.4.1", "1.4.3" ],
                    "wrench": "1.5.8"
                },
                "devDependencies": {}
            }
        }
    }
}
```

The `packages` value looks like this:

```json
{
    "async": "0.9.0",
    "colors": "1.0.3",
    "moment": "2.10.0",
    "node-uuid": "1.4.3",
    "wrench": "1.5.8"
}
```

## License

(The MIT License)

Copyright (c) 2015 Chris Barber

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

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