mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-30 22:57:59 +00:00
549f476c4c
The topics I've covered so far for Linux, package managers, archiving, and learning. I also updated some formatting for other notes especially with the command line references.
734 B
734 B
Go packages
- reference page
- names are traditionally URL-like (e.g.,
github.com/gohugoio/hugo
,github.com/errata-ai/vale
) similar to roam:Deno packages - has to be explicitly set with the
go.mod
file (i.e.,module MODULE_NAME
) go.sum
functions similarly to lockfiles containing cryptographic hashes of the modules used for a successful build-
Go modules can be vendored (e.g.,
go mod vendor
); it will be stored in thevendor/
directory of the root module- example of a project using vendored Go modules is Vale v2.5.0