azu / Github Reader
[node-webkit] GitHub client app - Viewer for Notifications and News Feed.
Stars: ✭ 137
Programming Languages
javascript
184084 projects - #8 most used programming language
github-reader
Github Client - Viewer for Notifications and News Feed
Built with node-webkit.
Features
- Viewer for mixed Notifications and News Feed
- Growl Notification(for Mac only, relate issue - Implement desktop notifications)
-
J,Kscroll shortcut -
O: open in browser -
Ctrl + Rreload -
Ctrl + f: toggle search bar - gif
Installation
Multi-platform support
- Windows
- Mac OS X
- Linux 32,64bit
Config
- Create New personal access token
- require scopes are
notificationsanduser
- require scopes are
- Open
Configin Github-Reader.app- Input Github username
- Input personal access token
- Save & Reload
UserFilterScript
Filter notifications by using filter script
- Create
UserFilterScript.js - Set
UserFilterScriptfile path in config view.
examples/user-filter-example.js: ignore "coveralls" account.
module.exports = function (item) {
if(item.user_name === "coveralls"){
return false;
}
return true;
};
Develop
npm install
Run apps with node-webkit.
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
License
MIT
Note that the project description data, including the texts, logos, images, and/or trademarks,
for each open source project belongs to its rightful owner.
If you wish to add or remove any projects, please contact us at [email protected].




