Skip to content

[node-webkit] GitHub client app - Viewer for Notifications and News Feed.

Notifications You must be signed in to change notification settings

azu/github-reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

github-reader Build Status

Github Client - Viewer for Notifications and News Feed

ScreenShot

Built with node-webkit.

Features

Installation

Download latest binary

Multi-platform support

  • Windows
  • Mac OS X
  • Linux 32,64bit

Config

token

config

  • Open Config in Github-Reader.app
    • Input Github username
    • Input personal access token
  • Save & Reload

UserFilterScript

Filter notifications by using filter script

2015-03-21_13-20-50

  1. Create UserFilterScript.js
  2. Set UserFilterScript file 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

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT

About

[node-webkit] GitHub client app - Viewer for Notifications and News Feed.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published