https://github.com/onebeyond/systemic-github-api
A systemic wrapper for github-api
https://github.com/onebeyond/systemic-github-api
hacktoberfest
Last synced: 20 days ago
JSON representation
A systemic wrapper for github-api
- Host: GitHub
- URL: https://github.com/onebeyond/systemic-github-api
- Owner: onebeyond
- License: mit
- Archived: true
- Created: 2017-06-20T16:28:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-04T13:51:29.000Z (almost 2 years ago)
- Last Synced: 2025-05-07T11:56:18.801Z (22 days ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/systemic-github-api
- Size: 8.79 KB
- Stars: 1
- Watchers: 11
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
})
```