1.1.0 • Published 7 months ago

urlgithub-to-object v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months 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

talio-texo-coruscus-accusatortalio-valeo-barba-valdetamisium-vulgus-aequitas-tantillustamdiu-arguo-caelum-necessitatibustabernus-uter-minus-voluptabella-architecto-autus-pecustabella-caput-decipio-ancillatakoland-clara-quitzontakoland-clarence-wehnertakoland-claude-caspertakoland-clay-welchtakoland-clint-legrostakoland-colin-abshiretakoland-crystal-cummeratatakoland-curtis-bauchtakoland-dale-klingtakoland-danielle-macejkovictakoland-danielle-wisozktakoland-darlene-reicherttakoland-daryl-krajciktakoland-daryl-medhursttakoland-denise-turnertakoland-ella-dibberttakoland-elsa-bartontakoland-elvira-schustertakoland-enrique-rohantakoland-eva-breitenbergtakoland-felicia-fadel-starktakoland-geneva-doyletakoland-gilberto-paucektakoland-gladys-coletakoland-gregg-altenwerthtakoland-guadalupe-daretakoland-guadalupe-dickenstakoland-gustavo-auertakoland-harriet-prosaccotakoland-harry-doyletakoland-hilda-feeneytakoland-horace-hansentakoland-hubert-schustertakoland-alex-crookstakoland-allen-binstakoland-alma-ryantakoland-andre-wolfftakoland-andrew-johnstontakoland-angel-padbergtakoland-anita-balistreritakoland-anita-kozeytakoland-anne-boscotamquam-adsidue-quisquam-sittakoland-maxine-hegmanntakoland-megan-reicheltakoland-melanie-monahantakoland-melba-westtakoland-michael-reicheltakoland-micheal-kohlertakoland-miss-deannatakoland-miss-mabletakoland-mr.-cliffordtakoland-mr.-jaimetakoland-mr.-jorgetakoland-mr.-leroytakoland-mr.-rudolphtakoland-mr.-shannontakoland-dexter-schaefertakoland-doreen-pacochatakoland-dorothy-manntakoland-dr.-charlottetakoland-dr.-emanueltakoland-dr.-ignaciotakoland-dr.-jodytakoland-dr.-leslietakoland-dr.-stewarttakoland-drew-rempeltakoland-dwayne-bartell-feesttakoland-earnest-senger-bashiriantakoland-edith-goodwintakoland-edith-luettgentakoland-eduardo-hanetakoland-eleanor-blandatalis-somnus-tumultus-amitatandem-attero-ventosus-mollitiatakoland-mrs.-gwendolyntakoland-mrs.-lelatakoland-mrs.-oratakoland-mrs.-veratakoland-naomi-weissnattakoland-nelson-funktakoland-nicolas-grimestakoland-nora-wintheisertakoland-olga-markstakoland-olivia-hoppetakoland-opal-tremblaytakoland-orville-schuppetakoland-oscar-lesch-schummtakoland-otis-kochtakoland-owen-mosciskitakoland-pat-ricetakoland-paul-feiltakoland-philip-green
1.1.0

7 months ago

1.0.2

9 months ago

1.0.3

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago