Socket
Socket
Sign inDemoInstall

githulk

Package Overview
Dependencies
73
Maintainers
6
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    githulk

Small but powerful Github client


Version published
Weekly downloads
4.1K
decreased by-2.9%
Maintainers
6
Install size
4.82 MB
Created
Weekly downloads
 

Readme

Source

Githulk

GitHulk is a developer friendly API client for the Github API. In addition to providing access to Github's official API's it also implements new methods that are either convenience functions or a composition of multiple API calls which will make certain actions easier or more natural.

Installation

This module is released in to the npm registry as githulk:

npm install --save githulk

Usage

The GitHulk module is exposed as a single function (constructor) and can therefor be required as:

'use strict';

var GitHulk = require('githulk');

To initialise a new GitHulk instance simply construct it using:

var githulk = new GitHulk(/* optional options */);

As you've might have noticed from the function call above, it accepts an optional options object. The following options can be provided:

  • url: The API endpoint of the Github API (with trailing slash).
  • maxdelay: Maximum delay for exponential back off.
  • mindelay: Minimum delay for exponential back off.
  • retries: Amount of retries before finally giving up.
  • factor: Exponential back off factor.
  • cache: A cache for conditional lookups.
  • user: A Github username (see Authorization)
  • password: A Github password (see Authorization)
  • token: A oauth token (see Authorization)

Authorization

If no options are supplied your API calls will be severely limited by GitHub and a really low rate limiting of 60 API calls per hour will be in place. In order to authorize the GitHulk instance you can provide it with:

  • token: An oauth token for your application.
  • user, password: The user and password of your account (for basic auth).
  • authorization: A predefined authorization header for each request.

In addition to supplying your authorization details through the constructor of the function we also support them through ENV variables. Set the GITHULK_TOKEN or GITHUB_TOKEN variable with your oauth token and we will use that automatically.

Arguments

All API endpoints follow the same function signature, the order in which they are provided does not matter. The only argument that is optional is the options argument.

  • project: An string that has the username/repo combination.
  • options: An object with additional configuration for the API method.
  • fn: An function which is called with an error first callback pattern.

The following API endpoints are implemented, they are currently implemented on a need to have basis:

.repository

  • githulk.repository.contents
  • githulk.repository.readme
  • githulk.repository.raw
  • githulk.repository.moved

License

MIT

Keywords

FAQs

Last updated on 16 Oct 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc