https://github.com/tabone/dvc
Checks for outdated dependencies
https://github.com/tabone/dvc
Last synced: 4 days ago
JSON representation
Checks for outdated dependencies
- Host: GitHub
- URL: https://github.com/tabone/dvc
- Owner: tabone
- License: isc
- Created: 2016-10-23T15:24:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-23T16:11:55.000Z (over 9 years ago)
- Last Synced: 2025-11-07T14:12:05.455Z (8 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dependency Version Checker
## Installation
```bash
npm install --save dvc
```
```bash
npm install -g dvc
```
## Usage
### Command line
```bash
dvc [--registry ] [[ ]]
```
Flags | Default | Description
-------- | --------------------------- | -----------
registry | https://registry.npmjs.org/ | Registry url
> When called without `pkg-name`, it will look for `package.json` in the current working directory.
### API
```javascript
const DVC = require('dvc')
const dvc = new DVC({
registry: 'http://localhost/registry'
})
dvc.check('i18n-light', 'ipc-emitter')
.then((info) => {
console.info(info)
})
```