All Projects → azu → Github Reader

azu / Github Reader

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

Programming Languages

javascript
184084 projects - #8 most used programming language

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

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].