New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

git-first-timer

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-first-timer

Find Good First Issues for First timers in Git

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

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)

FAQs

Package last updated on 31 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc