Hacker News new | ask | show | jobs
by vesak 2873 days ago
What is the current recommendation for dependency management in Go for a new project?
3 comments

dep was the tool I used. There are a few other solutions but this one was most popular when I last looked.

https://github.com/golang/dep

I was using dep but recently switched back to Glide since dep's future is uncertain.
Go modules are the future but use dep as of now