Y
Hacker News
new
|
ask
|
show
|
jobs
by
mmgutz
2652 days ago
How do you reference local go modules that are under development? The equivalent in node is `npm link`.
2 comments
_mway
2652 days ago
with a `replace` entry. e.g.
replace ( github.com/repo/module/path vX.X.X => /path/to/github.com/repo/module/path )
link
chrisbroadfoot
2648 days ago
https://github.com/rogpeppe/gohack
is great for this.
link