
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Node.JS GitHub API (v3) Wrapper
$ npm install github3
var github3 = require('github3');
// get user information
github3.getUser('edwardhotchkiss', function(error, user) {
console.log(user);
});
// get users repos
github3.getUserRepos('edwardhotchkiss', function(error, repos) {
console.log(repos);
});
// get users watched repos
github3.getUsersWatched('edwardhotchkiss', function(error, watched) {
console.log(watched);
});
// get an organizations github users
github3.getOrgMembers('github', function(error, members) {
console.log(members);
});
* Integrate oAuth Completely
* Document fully all methods
* Add Examples
* Build a non-trivial app with `github3`
* Release app on Nodejitsu
* Release Github3 v1.0.0
* Tests are being reworked. Considering using process.env['github_username'] etc...?
Copyright (c) 2011, Edward Hotchkiss.
**
Author: Edward Hotchkiss
Contributors: Mark Lussier, @dolphin278, Matias Woloski, Tejesh Mehta, wemotom & Matt Loar
FAQs
Node.js GitHub API (v3) Wrapper
We found that github3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.