Git Product home page Git Product logo

gh-repo-dependencies's Introduction

gh-repo-dependencies

unstable

For a GitHub URL like "Jam3/three-bmfont-text", returns a list of npm dependencies from the package.json and their registry stats.

Install

npm install gh-repo-dependencies --save

Example

var ghRepoDeps = require('gh-repo-dependencies')

ghRepoDeps('Jam3/three-bmfont-text', function (err, deps) {
  if (err) throw err
  
  var dependency = deps[0]
  
  console.log(dependency.name + '@' + dependency.verison)
  //> "inherits@^2.0.1"
  
  console.log(dependency.stats.description)
  //> "Browser-friendly inheritance..."
  
  console.log(dependency.stats.license)
  //> "ISC"
})

Usage

NPM

ghRepoDeps(url, [opt], [cb])

Fetches repository dependencies from a GitHub url (see here for valid formats), querying its package.json file.

Options:

  • token (String) optional GitHub API token to use when querying package.json
  • ref (String) the commit hash or branch name to fetch the package.json content from
  • filter (Function) optionally filter the dependencies before querying npm registry

For example, filter could look like this to avoid querying stats of devDependencies.

function filterDeps (package) {
  return package.list === 'dependencies'
}

The callback takes the form (err, data), where data is a flat array of dependencies gleaned from dependencies, devDependencies, peerDependencies, optionalDependencies (in that order) unless otherwise filtered.

Each item has the following data:

{
  name: 'inherits',     // name as it appears in package.json
  version: '^2.0.1',    // version range from package.json
  list: 'dependencies', // type of dependency
  stats: { ... }        // registry stats
  error: Error          // Error object if there was a problem
}

If stats could not be retrieved for that package, it will be null and error will be populated with the Error object. Otherwise error will not be defined.

The stats are fetched using npm-stats.

See Also

License

MIT, see LICENSE.md for details.

gh-repo-dependencies's People

Contributors

mattdesl avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.