Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/onebeyond/systemic-github-api

A systemic wrapper for github-api
https://github.com/onebeyond/systemic-github-api

hacktoberfest

Last synced: about 2 months ago
JSON representation

A systemic wrapper for github-api

Awesome Lists containing this project

README

        

# ⚠️ This repository is not longer maintained ⚠️

This project is not longer maintained and has been archived. More details in [One Beyond Governance Tiers](https://onebeyond-maintainers.netlify.app/governance/tiers)

# systemic-github-api
A [systemic](https://github.com/guidesmiths/systemic-github-api) github-api component

## Usage
```js
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
})
```