2.0.0 • Published 8 years ago

github-slug v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

github-slug

js-standard-style Build Status

Gets the github-slug for the given directory.

Install with npm install github-slug

var ghslug = require('github-slug')
ghslug('./', function (err, slug) {
  console.log(slug)
  // evaluates to 'finnp/github-slug' in this directory
})

Optionally you can specify a specific remote as the second argument.

ghslug('./', 'origin', function (err, slug) {
  console.log(slug)
})