Socket
Book a DemoInstallSign in
Socket

fetch-github-repositories

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch-github-repositories

Fetch github repositories for a given user (or organization)

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

fetch-github-repositories

version Maintenance MIT dep size

Fetch github repositories for a given user (or an organization).

Requirements

  • Node.js v10 or higher

Why ?

  • Fast and light (With a lazy API if required).
  • Support both users and orgs endpoints with the kind option.
  • Replacement for repos which introduce dozen of dependencies.
  • Come with a bundled TypeScript definition for intellisense.

Getting Started

This package is available in the Node Package Repository and can be easily installed with npm or yarn.

$ npm i fetch-github-repositories
# or
$ yarn add fetch-github-repositories

Usage example

const { fetch, fetchLazy } = require("fetch-github-repositories");

async function main() {
    const repos = await fetch("fraxken", {
        fetchUserOrgs: true // if you want an equivalent of "repos"
    });

    // or use lazy API
    for await (const repo of fetchLazy("fraxken")) {
        console.log(repo.full_name);
    }
}
main().catch(console.error);

API

fetch(user: string, options?: Options): Promise< Repository[] >

Return an Array of repositories (the interface can be found in index.d.ts).

Options:

namedefault valuedescription
agent"fetch-github-repo"User-Agent header (required by github)
tokenundefinedgithub token for private repositories
kind"users"can be either users or orgs
fetchUserOrgsfetch users organizations repositories when the kind is equal to users

fetchLazy(user: string, options?: Options): AsyncIterableIterator< Repository >

Same arguments as fetch.

License

MIT

Keywords

retrieve

FAQs

Package last updated on 11 Aug 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