dep-graph-count
v1.0.0
Published
Packages count that a repository depends on
Downloads
105
Maintainers
Readme
Install
$ npm install --save dep-graph-count
Usage
const depGraphCount = require('dep-graph-count');
depGraphCount('facebook', 'react').then(res => {
console.log(res);
// { repositories: '1,147,374', packages: '46,145' }
// or
console.log(res.repositories);
// 1,147,374
// or
console.log(res.packages);
// 46,145
});
API
depGraphCount(username, repository)
depGraphCount(organization, repository)
typeof
username/organization
- string
tyepof
repository
- string
Related
depg
:
Command line tool to find total dependents on a repository!
License
MIT - Copyright © Rishi Giri