node-ghapi
v2.0.5
Published
A GitHub API wrapper written in TypeScript
Downloads
13
Readme
node-ghapi
A GitHub API wrapper written in TypeScript
Usage
// 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.