项目作者: pajaydev

项目描述 :
高级语言: JavaScript
项目地址: git://github.com/pajaydev/git-first-timers.git
创建时间: 2018-12-03T08:04:16Z
项目社区:https://github.com/pajaydev/git-first-timers

开源协议:

下载


Git First Timers

Installation

  1. npm install git-first-timer

This plugin simplifies the Git Search Issues Api, you can provide the below options to search GIT issues. By default this module will fetch all issues with label “Good First Issue” based on the language. It will be helpful for Git First Timers searching issues to contribute.

Usage

  1. const GitFirstTimer = require('git-first-timer');
  2. const git = new GitFirstTimer({
  3. q: 'react',
  4. language: 'Javascript',
  5. sort: 'created',
  6. order: 'asc',
  7. label: "good first issue"
  8. });
  9. git.getIssues().then((data) => {
  10. console.log(data);
  11. })
  12. });

Options

q - query a value.

language - any language.

sort - Sort the Github issues.

order - asc / desc.

label - any label ( default label - good first issue)