πΉGo CLI
Describe about CLI of Go
Command
go mod init <PATH>
= Create module for management Go project. It will create go.mod file same as package.json in Node.go build <FILE_NAME>
= Build source code to be binary.go get <PACKAGE_NAME>
= Download package and store in module cachego mod tidy
= It adds any missing module requirements necessary to build the current moduleβs packages and dependencies.
Last updated