A GitHub API wrapper written in TypeScript
// JavaScript
const { User } = require( 'node-ghapi' );
let user = new User('username', 'authentication-token');
// TypeScript
import { User } from 'node-ghapi';
let user = new User('username', 'authentication-token');
NOTE: This is a rewrite of the original version of this API wrapper. It is not yet on feature parity.
Generated using TypeDoc