Options
All
  • Public
  • Public/Protected
  • All
Menu

ghapi

node-ghapi Build Status Discord

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.

Generated using TypeDoc