Skip to content
/ mod Public

A package for finding and manipulating go.mod files.

License

Notifications You must be signed in to change notification settings

livebud/mod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ea8ef10 · Mar 26, 2025

History

16 Commits
Mar 26, 2025
Aug 14, 2023
Mar 26, 2025
Mar 26, 2025
Aug 14, 2023
Aug 14, 2023
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025

Repository files navigation

Mod

Go Reference

A package for finding and manipulating go.mod files.

Features

  • Recursively traverses up the filesystem looking for go.mod
  • Supports resolving import paths to directories
  • Supports resolving directories to import paths
  • Extracted from Bud

Install

go get github.com/livebud/mod

Example

func main() {
  module, err := mod.Find(".")
  if err != nil {
    fmt.Fprintln(os.Stderr, err)
    os.Exit(1)
  }
  fmt.Println(module.Dir())
  fmt.Println(module.Import())
}

Contributors

License

MIT

About

A package for finding and manipulating go.mod files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published