https://github.com/mdxprograms/ghreader
A minimal github dashboard for the productive developer
https://github.com/mdxprograms/ghreader
dashboard desktop-app github
Last synced: about 1 year ago
JSON representation
A minimal github dashboard for the productive developer
- Host: GitHub
- URL: https://github.com/mdxprograms/ghreader
- Owner: mdxprograms
- Created: 2020-06-11T17:16:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T08:55:00.000Z (about 3 years ago)
- Last Synced: 2025-01-04T06:41:52.421Z (about 1 year ago)
- Topics: dashboard, desktop-app, github
- Language: JavaScript
- Homepage:
- Size: 2.52 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Reader
Uses Octokit REST sdk - https://octokit.github.io/rest.js/v17
```javascript
/**
* get users following -> octokit.users.listFollowedByAuthenticated();
* get users followers -> octokit.users.listFollowersForAuthenticatedUser();
* get issues assigned to user -> octokit.issues.list();
* get gists owned by user -> octokit.gists.list();
* get gist owned by user ->
* octokit.gists.get({
* gist_id,
* });
* get notifications for user -> octokit.activity.listNotificationsForAuthenticatedUser();
*/
```
## Development
- Create an auth token in developer settings with access to `gist, notifications, repo, user` https://github.com/settings/tokens/new
- Create a new `.env.local` in the project root directory with `REACT_APP_GH_TOKEN=