0.1.0 • Published 7 years ago

systemic-github-api v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

systemic-github-api

A systemic github-api component

Usage

const System = require('systemic')
const github = require('systemic-github-api')
const config = {
    github: {
        token: 'MY_OAUTH_TOKEN'
    }
}

new System()
    .add('config', config, { scoped: true })
    .add('github', github()).dependsOn('config')
    .start((err, components) => {
        // Do stuff with components.github
    })