Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 698 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 698 Bytes

⚠️ This repository is not longer maintained ⚠️

This project is not longer maintained and has been archived. More details in One Beyond Governance Tiers

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
    })