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

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

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=