0.1.1 • Published 10 years ago

resolve-github-refs v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

resolve-github-refs build status

Resolves all refs for a remote github repo, including heads, tags and pulls.

var resolve = require('resolve-github-refs')

resolve('joyent/node', function (err, refs) {
  if (err) return console.error(err);
  console.log('The nodejs repo has %d heads, %d tags and %d pulls', refs.heads.length, refs.tags.length, refs.pulls.length);
  console.log('The latest head is "%s"', refs.heads.pop());
  console.log('The latest tag is "%s"', refs.tags.pop());
  console.log('The latest pull is "%s"', refs.pulls.pop());
})
The nodejs repo has 104 heads, 231 tags and 5257 pulls
The latest head is "v0.11.12-release"
The latest tag is "works"
The latest pull is "7394/merge

Installation

npm install resolve-github-refs

API

generated with docme

License

MIT