https://github.com/pajaydev/git-first-timers
https://github.com/pajaydev/git-first-timers
get-issues git git-first-timers git-issues good-first-bug good-first-issue
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pajaydev/git-first-timers
- Owner: pajaydev
- Created: 2018-12-03T08:04:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-31T08:58:52.000Z (over 7 years ago)
- Last Synced: 2025-07-20T14:02:31.295Z (11 months ago)
- Topics: get-issues, git, git-first-timers, git-issues, good-first-bug, good-first-issue
- Language: JavaScript
- Size: 5.86 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git First Timers
## Installation ##
``` bash
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 ##
```js
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)