Web APIs and message consumers
Web APIs and message consumers
โ 5 years so far โฅ๏ธ
There are many web frameworks to write api. Or frameworks to write cli.
Most of the time you don't need them, unless you're doing advanced things.
Starting with plain go makes you understand things better
Be open minded and enjoy ๐ค
Here some useful guidelines to write idiomatic code go.dev/wiki/CodeRev...
Avoid Frameworks.
Use the standard library since it has most of the features you'll need.
Do simple design.
Avoid unnecessary abstraction and indirection.
"Promise of compatibility".
Being able to update language and libraries version without pain is amazing
Simplicity.
Creators and community focus is to make things easy to understand instead of creating never-ending hype with new features.