@octokit/rest
GitHub REST API client for Node.js
Last updated 6 years ago by octokitbot .
MIT · Repository · Bugs · Original npm
$ cnpm install @octokit/rest 
SYNC missed versions from official npm registry.

rest.js

GitHub REST API client for JavaScript

@latest Build Status Greenkeeper

Installation

npm install @octokit/rest

Usage

const { Octokit } = require("@octokit/rest");
const octokit = new Octokit();

// Compare: https://developer.github.com/v3/repos/#list-organization-repositories
octokit.repos
  .listForOrg({
    org: "octokit",
    type: "public"
  })
  .then(({ data }) => {
    // handle data
  });

See https://octokit.github.io/rest.js/ for full documentation.

Contributing

We would love you to contribute to @octokit/rest, pull requests are very welcome! Please see CONTRIBUTING.md for more information.

Credits

@octokit/rest was originally created as node-github in 2012 by Mike de Boer from Cloud9 IDE, Inc.

It was adopted and renamed by GitHub in 2017

LICENSE

MIT

Current Tags

  • 17.0.0-beta.3                                ...           beta (6 years ago)
  • 15.18.1                                ...           deprecations-for-v16 (7 years ago)
  • 19.0.7                                ...           latest (3 years ago)
  • 17.0.0                                ...           next (6 years ago)
  • 15.18.3                                ...           release-15.x (6 years ago)
  • 16.43.2                                ...           release-16.x (5 years ago)
  • 18.12.0                                ...           release-18.x (4 years ago)

19 Versions

  • 19.0.7                                ...           3 years ago
  • 19.0.5                                ...           3 years ago
  • 19.0.4                                ...           3 years ago
  • 16.25.0                                ...           6 years ago
  • 18.12.0                                ...           4 years ago
  • 18.6.0                                ...           4 years ago
  • 18.6.7                                ...           4 years ago
  • 18.10.0                                ...           4 years ago
  • 18.9.0                                ...           4 years ago
  • 17.11.0                                ...           5 years ago
  • 16.43.2                                ...           5 years ago
  • 18.3.5                                ...           4 years ago
  • 17.0.0                                ...           6 years ago
  • 17.9.2                                ...           5 years ago
  • 15.18.1                                ...           7 years ago
  • 17.0.0-beta.3                                ...           6 years ago
  • 15.18.3                                ...           6 years ago
  • 16.36.0                                ...           6 years ago
  • 16.43.1                                ...           6 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dev Dependencies (33)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org