Y
Hacker News
new
|
ask
|
show
|
jobs
by
LunaSea
3360 days ago
At least Node.js has a built in package manager and not Github link hell like Go.
3 comments
notheguyouthink
3360 days ago
Fwiw, Go has an official package manager in development. Granted, they'll still be using repos rather than a central host.
link
bpicolo
3360 days ago
npm isn't a built-in package manager. It's commonly packaged alongside node, sure.
link
LunaSea
3360 days ago
It's separate to the language but there is actually an NPM version inside the Node.js repository if you build from source.
link
bigdubs
3360 days ago
we use `govendor` to inline dependencies in tree; removes npm as a critical path when deploying, also means we can review dependency code changes like normal code changes.
link