forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.js
More file actions
37 lines (31 loc) · 721 Bytes
/
example.js
File metadata and controls
37 lines (31 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/** section: github, internal
* Example
*
* Github API usage example.
*
* Copyright 2012 Cloud9 IDE, Inc.
*
* This product includes software developed by
* Cloud9 IDE, Inc (http://c9.io).
*
* Author: Mike de Boer <mike@c9.io>
**/
"use strict";
var Client = require("./../index");
var github = new Client({
debug: true,
version: "3.0.0"
});
github.authenticate({
type: "basic",
username: "mikedeboer",
password: "mysecretpass"
});
github.user.get({}, function(err, res) {
console.log("GOT ERR?", err);
console.log("GOT RES?", res);
github.repos.getAll({}, function(err, res) {
console.log("GOT ERR?", err);
console.log("GOT RES?", res);
});
});