TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Goop – Dependency Manager for Go

71 pointsby alixaxelalmost 11 years ago

11 comments

jameskiltonalmost 11 years ago
What does this offer that godep doesn't?
评论 #7956642 未加载
vmiroshnikovalmost 11 years ago
If someone looks for an alternative, consider this kit:<p><a href="https://github.com/pote/gvp" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pote&#x2F;gvp</a> - virtualenv in go&#x27;s world<p><a href="https://github.com/pote/gpm" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pote&#x2F;gpm</a> - pip in go&#x27;s world
dead10ckalmost 11 years ago
I&#x27;m curious why so many of these Go dependency managers are popping up. Doesn&#x27;t go get download all dependencies automatically? Why are these third-party dependency managers necessary?
评论 #7957346 未加载
alecthomasalmost 11 years ago
Config file is nicer than godep; easily generated with a bit of shell. Quite nice.
kyleredalmost 11 years ago
In case anyone is interested, we open sourced this one about a year ago: <a href="https://github.com/VividCortex/johnny-deps" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;VividCortex&#x2F;johnny-deps</a>
imslavkoalmost 11 years ago
It says it is inspired by Bundler but in what ways? I am curious as I didn&#x27;t use much of neither bundler nor goop but I have heard the constraints resolution lays in the heart of bundler.
评论 #7956745 未加载
评论 #7956747 未加载
dz0nyalmost 11 years ago
set -x GOPATH (PWD)&#x2F;.vendor set -x GOBIN (PWD)&#x2F;.vendor&#x2F;bin<p>And committing stuff in git when it matters.<p>gvm is also nice for testing stuff with different versions of go.
评论 #7956766 未加载
sswaneralmost 11 years ago
Hope Gwyneth Paltrow doesn&#x27;t get upset about the name. <a href="http://www.goop.com" rel="nofollow">http:&#x2F;&#x2F;www.goop.com</a>
aosmithalmost 11 years ago
I&#x27;ve been doing basically the same thing by creating src&#x2F; and pkg&#x2F; directories and using this alias:<p>go=&#x27;GOPATH=`pwd`:$GOPATH go&#x27;
评论 #7956616 未加载
dkulchenkoalmost 11 years ago
Looks fantastic, thanks for this!
leccinealmost 11 years ago
Goop for teh rescue! The only trouble I had with go is the dependency handling. I wish people realize how Erlang&#x27;s way of dealing with this is superior.
评论 #7956385 未加载