🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

github-repositories

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github-repositories

Get all Github repos from a user or an organization

Source
npmnpm
Version
3.1.0
Version published
Weekly downloads
174
67.31%
Maintainers
2
Weekly downloads
 
Created
Source

github-repositories Build Status

Get all GitHub repos from a user or an organization

Install

$ npm install github-repositories

Usage

const githubRepositories = require('github-repositories');

(async () => {
	console.log(await githubRepositories('kevva'));
	//=> [{id: 29258368, name: 'animal-sounds', full_name: 'kevva/animal-sounds', …}, …]
})();

API

githubRepositories(name, options?)

Returns a Promise<object[]> with the the repositories.

name

Type: string

Username or organization to fetch repos from.

options

Type: object

token

Type: string

Token to authenticate with. Use this to increase the request count. Github supports up to 60 unauthenticated request per hour. This is also required for accessing private repos.

If you don't have a token you can generate a new one here.

endpoint

Type: string
Default: https://api.github.com/

To support GitHub Enterprise.

Can be set globally with the GITHUB_ENDPOINT environment variable.

CLI

$ npm install --global github-repositories
$ github-repositories --help

  Usage
    $ github-repositories kevva
    $ github-repositories kevva --token 523ef69119eadg12

  Options
    -f, --forks    Only list forks
    -r, --repos    Only display repository names
    -s, --sources  Only list sources
    -t, --token    GitHub authentication token
    -u, --urls     Only display URLs

Keywords

cli-app

FAQs

Package last updated on 30 Sep 2019

Did you know?

Socket

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.

Install

Related posts