GO

Install Individual packages
go get github.com/ffuf/ffuf
Update Dependencies
got get -u github/fatih/color@latest
Create mod folder
go mod init <projectfolder>
Add Dependencies
go mod ini
Compile Code
go build
Run code
go run <code>
Clean Unused dependencies
go mod tidy
List all dependencies
go list -m all

Last updated