Sometimes we want to trace Github Projects we are interesed. And we always want to know how many numbers of ⭐️ they get now.
This project can easily help us focus on projects we are interested, and can also help us order these projects by numbers of ⭐️.
-
Create a github token (how to generate a github token)
You will get something like
3061ba66c81c7590e3b2a3bd3055fece429fb531
-
Install star-go
$ go get github.com/teyushen/star-go $ go install github.com/teyushen/star-go -
Initial the star-go
$ star-go init <token>e.g.
$ star-go init 3061ba66c81c7590e3b2a3bd3055fece429fb531 -
Add you interesting github repositories
$ star-go focus <owner/repository>...e.g.
$ star-go focus teyushen/star-go teyushen/dockerfile golang/go -
Order the numbers of size of repositories you are interested
$ star-go compare
-
Create a directory
-
Linux or Mac
$ mkdir -p ~/.star-go -
Windows
$ mkdir C:\.star-go
-
-
Initial the star-go
-
Linux or Mac
$ docker run -it -v ~/.star-go:/root/.star-go --rm sldennis/star-go init <token>e.g.
docker run -it -v ~/.star-go:/root/.star-go --rm sldennis/star-go init 3061ba66c81c7590e3b2a3bd3055fece429fb531 -
Windows
$ docker run -it -v C:/.star-go:/root/.star-go --rm sldennis/star-go init <token>e.g.
docker run -it -v C:/.star-go:/root/.star-go --rm sldennis/star-go init 3061ba66c81c7590e3b2a3bd3055fece429fb531
-
-
Add you interesting github repositories
-
Linux or Mac
$ docker run -it -v ~/.star-go:/root/.star-go --rm sldennis/star-go focus <owner/repository>...e.g.
docker run -it -v ~/.star-go:/root/.star-go --rm sldennis/star-go focus teyushen/star-go teyushen/dockerfile golang/go -
Windows
$ docker run -it -v C:/.star-go:/root/.star-go --rm sldennis/star-go focus <owner/repository>...e.g.
docker run -it -v C:/.star-go:/root/.star-go --rm sldennis/star-go focus teyushen/star-go teyushen/dockerfile golang/go
-
-
Order the numbers of size of repositories you are interested
-
Linux or Mac
$ docker run -it -v ~/.star-go:/root/.star-go --rm sldennis/star-go compare -
Windows
$ docker run -it -v C:/.star-go:/root/.star-go --rm sldennis/star-go compare
-
MIT


