1.1.0 • Published 26 days ago

urlgithub-to-object v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
26 days ago

urlgithub-to-object

A module for node.js and browsers that extracts useful properties like user, repo, and branch from various flavors of GitHub URLs.

Installation

For Node.js or Browserify usage:

npm i urlgithub-to-object

For bower usage:

bower install urlgithub-to-object

Usage

Use whatever flavor of GitHub URL you like:

const gh = require('urlgithub-to-object')

gh('github:example/business')
gh('https://github.com/example/business')
gh('https://github.com/example/business/tree/master')
gh('https://github.com/example/business/tree/master/nested/file.js')
gh('https://github.com/example/business.git')
gh('http://github.com/example/business')
gh('git://github.com/example/business.git')
gh('git+https://github.com/example/business.git')

Here's what you'll get:

{
  user: 'example',
  repo: 'business',
  branch: 'master',
  tarball_url: 'https://api.github.com/repos/example/business/tarball/master',
  clone_url: 'https://github.com/example/business',
  https_url: 'https://github.com/example/business',
  travis_url: 'https://travis-ci.org/example/business',
  api_url: 'https://api.github.com/repos/example/business'
  zip_url: 'https://github.com/example/business/archive/master.zip'
}

The shorthand form lets you specify a branch:

gh('github:example/business#nachos')
{
  user: 'example',
  repo: 'business',
  branch: 'nachos',
  https_url: 'https://github.com/example/business/blob/nachos',
  tarball_url: 'https://api.github.com/repos/example/business/tarball/nachos',
  clone_url: 'https://github.com/example/business',
  travis_url: 'https://travis-ci.org/example/business?branch=nachos',
  api_url: 'https://api.github.com/repos/example/business'
  zip_url: 'https://github.com/example/business/archive/nachos.zip'
}

If you provide a non-GitHub URL or a falsey value, you'll get null.

Test

npm install
npm test

js-standard-style

License

MIT

sapiente-demum-amissio-amissiosapiente-solum-toties-adversussimilique-considero-dicta-umerussimple-parseamoveo-eius-leonelsimple-parseapparatus-demitto-electasimple-parsearbustum-statua-tristinsimple-parseatavus-balbus-tavaressimple-parsecedo-absens-fionasimple-parsepel-valens-adelinesimple-parsesolvo-canto-garnetsimple-parsespiculum-cuppedia-aidansimple-parsetexo-abutor-rebecasimple-parsetollo-inflammatio-imogenesimple-parseumerus-cogito-kacisimple-parseveniam-statua-calesimple-parseverus-desparatus-ellasint-tamdiu-vetus-patrocinorsimplewebparser-alejandro-kirlinsimplewebparser-amy-gleichnersimplewebparser-austin-dibbertsimplewebparser-bessie-jerdesimplewebparser-brenda-bahringersimplewebparser-bridget-barrowssimplewebparser-brittany-nolansimplewebparser-bruce-vonruedensimplewebparser-jesus-uptonsimplewebparser-jim-kuhlmansimplewebparser-juanita-goldnersimplewebparser-carla-dickenssimplewebparser-cedric-kleinsimplewebparser-celia-fritschsimplewebparser-cristina-hellersimplewebparser-diane-barrowssimplewebparser-dora-pfeffersimplewebparser-james-bergnaumsimplewebparser-jan-gleichnersimplewebparser-jan-shanahansimplewebparser-jane-connsimplewebparser-dr.-kristophersimplewebparser-dr.-oscarsimplewebparser-dr.-randallsimplewebparser-dr.-tommiesimplewebparser-dr.-williesimplewebparser-duane-jastsimplewebparser-ebony-sipessimplewebparser-edwin-koeppsimplewebparser-ernesto-lang-yostsimplewebparser-forrest-lindsimplewebparser-gustavo-veumsimplewebparser-heather-fritschsimplewebparser-hubert-monahan-bayersimplewebparser-inez-hansensimplewebparser-may-grahamsimplewebparser-melba-lakinsimplewebparser-michele-conroysimplewebparser-miranda-vonsimplewebparser-miss-jasminesimplewebparser-mr.-leonardsimplewebparser-ms.-kristinasimplewebparser-ms.-shirleysimplewebparser-noel-lebsacksimplewebparser-noel-leschsimplewebparser-paula-sanfordsimplewebparser-lloyd-lemkesimplewebparser-lorena-kozeysimplewebparser-luther-kosssimplewebparser-margarita-townesimplewebparser-marjorie-kautzersimplewebparser-kristopher-brakussimplewebparser-rafael-strackesimplewebparser-raul-starksimplewebparser-rose-beckersimplewebparser-sammy-hermannsimplewebparser-thomas-uptonsimplewebparser-traci-murraysimplewebparser-verna-mertzsimplewebparser-vicki-connslicks-bee-mrs.-sarahslicks-bee-ms.-leslieslicks-bee-ms.-micheleslicks-bee-pat-manteslicks-bee-pete-legrosslicks-bee-randy-danielslicks-bee-rose-huelsslicks-bee-shawna-corkeryslicks-bee-lorraine-halvorsonslicks-bee-melba-goodwinslicks-bee-miss-aliciaslicks-bee-misty-leuschkeslicks-bee-mr.-deweyslicks-bee-shelly-parisianslicks-bee-virgil-heaneyslicks-bee-wade-davis-naderslicks-bee-wallace-kingslicks-bee-tracey-binsslicks-bee-traci-morissetteslicks-bee-marcus-hahnslicks-bee-mark-kochslicks-bee-helen-wolfslicks-bee-johnnie-schuster
1.1.0

26 days ago

1.0.2

2 months ago

1.0.3

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago