Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github-url-to-object
Advanced tools
Extract user, repo, and other interesting properties from GitHub URLs
A module for node.js and browsers that extracts useful properties like user
,
repo
, and branch
from various flavors of GitHub URLs.
There's also a Bitbucket equivalent to this library: bitbucket-url-to-object.
Check out the demo at zeke.github.io/github-url-to-object.
For Node.js or Browserify usage:
npm i github-url-to-object
For bower usage:
bower install github-url-to-object
Use whatever flavor of GitHub URL you like:
const gh = require('github-url-to-object')
gh('github:monkey/business')
gh('https://github.com/monkey/business')
gh('https://github.com/monkey/business/tree/master')
gh('https://github.com/monkey/business/tree/master/nested/file.js')
gh('https://github.com/monkey/business.git')
gh('http://github.com/monkey/business')
gh('git://github.com/monkey/business.git')
gh('git+https://github.com/monkey/business.git')
Here's what you'll get:
{
user: 'monkey',
repo: 'business',
branch: 'master',
tarball_url: 'https://api.github.com/repos/monkey/business/tarball/master',
clone_url: 'https://github.com/monkey/business',
https_url: 'https://github.com/monkey/business',
travis_url: 'https://travis-ci.org/monkey/business',
api_url: 'https://api.github.com/repos/monkey/business'
zip_url: 'https://github.com/monkey/business/archive/master.zip'
}
The shorthand form lets you specify a branch:
gh('github:monkey/business#nachos')
{
user: 'monkey',
repo: 'business',
branch: 'nachos',
https_url: 'https://github.com/monkey/business/blob/nachos',
tarball_url: 'https://api.github.com/repos/monkey/business/tarball/nachos',
clone_url: 'https://github.com/monkey/business',
travis_url: 'https://travis-ci.org/monkey/business?branch=nachos',
api_url: 'https://api.github.com/repos/monkey/business'
zip_url: 'https://github.com/monkey/business/archive/nachos.zip'
}
If you provide a non-GitHub URL or a falsey value, you'll get null
.
If you're using GitHub Enterprise, pass the enterprise
option to allow
your non-github.com
URL to be parsed:
gh('https://ghe.example.com:heroku/heroku-flags.git', { enterprise: true })
npm install
npm test
MIT
FAQs
Extract user, repo, and other interesting properties from GitHub URLs
The npm package github-url-to-object receives a total of 32,119 weekly downloads. As such, github-url-to-object popularity was classified as popular.
We found that github-url-to-object demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.