Is vendoring a standard approach or is it obsolete?

85 Views Asked by At

I'm about to setup a new project in Go. I came across the term vendoring. Is this standard or an obsolete concept. I'm coming from a nodejs world and this feels like copying the nod_modules folder to a separate directory or am I confusing the whole purpose of this?

1

There are 1 best solutions below

0
On

It's not technically obsolete, but most cases should use go modules instead.