1.0.2 • Published 4 years ago

search-github-repos v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

search-github-repos

Get a list of Github repositories of specified username sorted by the last updated time

Installation

# using npm
npm i search-github-repos

# using yarn
yarn add search-github-repos

Usage

# using require
const { getRepos } = require('search-github-repos');

# using import
import { getRepos } from 'search-github-repos';

Example

Using promises:

getRepos({
  username: 'fluorspar20', // provide GitHub username here
  page: 1, // optional property: default value is 1
  per_page: 50 // optional property: default value is 40
}).then((repositories) => console.log(repositories));

Using async/await:

const getRepositories = async function () {
  const repositories = await getRepos({
    username: 'fluorspar20', // provide GitHub username here
    page: 1, // optional property: default value is 1
    per_page: 50 // optional property: default value is 40
  });
  console.log(repositories);
};

getRepositories();