As Go matures, no-code
(if you squint) solutions are making their way into the ecosystem. This means faster MVP's and less errors writing out the same CRUD project-after-project.
- Starting with just your sql statements, you use sqlc to generate the models and entities
- Write your actual service/business logic using the entities and interfaces sqlc generated (wish list: skip this step)
- Use goa to generate your OpenAPI HTTP or gRPC webserver
- Have openapi-generator produce the Typescript SDK you're UI will use to call it
- Build out your interface
- Publish (web, app store, etc..)
- Make it home in time for dinner
- https://github.com/masseelch/elk to generate HTTP handlers from ent types (no gRPC or GraphQL)
- ent + https://github.com/99designs/gqlgen to generate the graphql endpoints (no gRPC or REST)
- https://github.com/walterwanderley/sqlc-grpc/ to generate HTTP and gRPC handlers from sqlc (no GraphQL)