Socket
Socket
Sign inDemoInstall

github-collect

Package Overview
Dependencies
7
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github-collect

A NodeJS library for getting Github objects like repositories, members, gists for users and orgs.


Version published
Maintainers
1
Install size
1.97 MB
Created

Readme

Source

Github Collect

A NodeJS library for getting Github objects like repositories, members, gists for users and orgs.

Install

npm install github-collect

Configuration

Configuration is handled by rc so any of those valid ways of definingconfiguration will work.

  • github_token: Your Oauth token for Github; you can create one on your Github account under Settings -> Applications. Example of using an environment variable: export github_collect_github_token=abc

Use

var gc = require('github-collect');

// Get returns a promise
gc.get('username').done(function(data) {
  console.log(data);
});

// Username can be an array or a string of names separated by columns
gc.get('username1,username2');
gc.get(['username1', 'username2']);

Provides promises with q.

Data structure

What you will get back in return is a keyed object by username of the Github information for that username with a custom property called objects which holds the supplementary objects.

{
  organization_name: {
    ...,
    objects: {
      repos: [],
      gists: [],
      members: []
    }
  },
  user_name: {
    ...,
    objects: {
      repos: [],
      gists: []
    }
  }
}

Test

npm install -g mocha
mocha

FAQs

Last updated on 01 Sep 2013

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