Go Command Line Tool to Check A User's GitHub Activity
Follow these steps to run the project locally.
Prerequisites
Make sure the following are installed.
Cloning the Repository
git clone https://github.com/juliansommer/github-activity.git
cd github-activityInstalling Dependencies
go mod tidyBuilding the Application
go build -o github-activityRunning the Application
# Using go run
go run main.go <username> [-p <page>] [-n <number per page>]
# Or using the built binary
./github-activity <username> [-p <page>] [-n <number per page>]go run main.go juliansommer -p 1 -n 10