Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r00tman/ghview
View your GitHub traffic stats in terminal for all repos at once
https://github.com/r00tman/ghview
analytics clojure github github-api
Last synced: 10 days ago
JSON representation
View your GitHub traffic stats in terminal for all repos at once
- Host: GitHub
- URL: https://github.com/r00tman/ghview
- Owner: r00tman
- License: epl-2.0
- Created: 2019-04-29T22:27:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T22:27:48.000Z (over 5 years ago)
- Last Synced: 2024-08-01T15:35:39.784Z (4 months ago)
- Topics: analytics, clojure, github, github-api
- Language: Clojure
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ghview
View your GitHub traffic stats in terminal for all repos at once.
## Getting Started
You need to create `src/ghview/config.clj` with following content
```clojure
(ns ghview.config)(def token "your github token")
(def auth {"Authorization" (clojure.string/join ["token " token])})
(def userUrl "https://api.github.com/users/yourName")
```Now, it's ready to use:
```shell
$ lein run # shows your view stats
$ lein run views # same
$ lein run clones # shows your clone stats
```