1.0.5 • Published 8 years ago

node-gh-trending v1.0.5

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

node-gh-trending

js-standard-style Build Status

Access GitHub trending repositories / developers

Install

$ npm install --save node-gh-trending

API

findRepos([lang], [time], callback)

findDevs([time], callback)

If you would like trending weekly or monthly results, you can provide those as the time option and if a time is not provided, the daily trending repositories will be given.

Usage

const trending = require("node-gh-trending")

trending.findRepos("javascript", "weekly", function (res) {
  console.log("Today's top repos: ", res)
})

trending.findDevs("monthly", function (res) {
  console.log("This month's top devs: ", res)
})

License

MIT

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago