|
|
|
|
|
by marcus_holmes
2948 days ago
|
|
Seconded. Unlike Node/Ruby/most other modern languages, Go devs actively avoid including dependencies if at all possible. And contrary to rumour, this is not because Go's dependency management sucks. It's more about the pursuit of simplicity, and avoidance of magic. You can write pretty much anything using just the standard library (and some of the official packages, like the crypto ones). As the parent said, it's good practice to go as far as possible with just the stdlib. |
|