git-first-timer
v1.0.0
Published
Find Good First Issues for First timers in Git
Downloads
2
Readme
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)