Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fetch-github-trending

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch-github-trending

fetch github trending easily

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

npm downloads Test

fetch github trending easily

Install

npm install fetch-github-trending

Usage

import fetchGithubTrending, { ProgramLanguage, SpokenLanguage } from 'fetch-github-trending';

const { repositories } = await fetchGithubTrending({
  spokenLanguage: SpokenLanguage.English,
  programLanguage: ProgramLanguage.TypeScript,
  dateRange: 'monthly',
});

console.log(repositories);

output:

[
  {
    owner: 'freeCodeCamp',
    name: 'freeCodeCamp',
    description: "freeCodeCamp.org's open-source codebase and curriculum. Learn to code for free.",
    programLanguage: 'TypeScript',
    programLanguageColor: '#3178c6',
    starCount: 382086,
    starCountInDateRange: 151,
    forkCount: 35617,
    contributors: ['raisedadead', 'ojeytonwilliams', 'camperbot', 'renovate-bot', 'sahat'],
  },
  // ...
];

Options

view source for latest options:

interface Options {
  spokenLanguage?: SpokenLanguage;
  programLanguage?: ProgramLanguage | ProgramLanguage[];
  dateRange?: 'daily' | 'weekly' | 'monthly';
}

Keywords

FAQs

Package last updated on 24 Jan 2024

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