github-url-parse
v0.1.0
Published
Parse the github user, repo, branch and other things from a GitHub url.
Downloads
677
Readme
github-url-parse
Parse the github user, repo, branch and other things from a GitHub url.
Install
$ npm install --save github-url-parse
Usage
var gitHubUrlParse = require('github-url-parse');
var github = gitHubUrlParse('https://github.com/stefanbuck/github-url-parse/blob/master/lib/index.js');
console.log('user:' + github.user); // stefanbuck
console.log('repo:' + github.repo); // github-url-parse
console.log('branch:' + github.branch); // master
console.log('path:' + github.path); // lib/index.js
console.log('type:' + github.type); // blob
License
Copyright (c) 2014 Stefan Buck. Licensed under the MIT license.