github-slug
v2.0.0
Published
Get the github slug (username/repo) of the current folder
Downloads
38
Readme
github-slug
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)
})