Skip to content

pajaydev/git-first-timers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git First Timers

Installation

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

const GitFirstTimer = require('git-first-timer');
const git = new GitFirstTimer({
     q: 'react',
     language: 'Javascript',
     sort: 'created',
     order: 'asc',
     label: "good first issue"
 });

 git.getIssues().then((data) => {
     console.log(data);
 })
});

Options

q - query a value.
language - any language.
sort - Sort the Github issues.
order - asc / desc.
label - any label ( default label - good first issue)