I’m eager to write about a technology stack that I’ve stumbled into, which I believe is the nicest one I’ve ever worked with. The stack is called GoConnSPA, and it consists of the following technologies and tools;
Go: The Go programming language, which is known for its simplicity and efficiency.
ConnectRPC: A gRPC framework for Go that simplifies the process of building and consuming gRPC services.
SPA (+CSR): Single Page Application with client side rendering - not reliant on the server.
Tools
Air: A live reloading tool for Go applications, which automatically reloads the application when code changes are detected.
Vite: A build tool that provides a fast development environment and optimizes the build process for production.
Goreleaser: A tool for building and releasing Go applications, making it easy to create binaries and publish them to various platforms.
precommit: A framework for managing and maintaining multi-language pre-commit hooks, ensuring code quality and consistency.
conventional-pre-commit: A pre-commit hook that enforces conventional commit messages, helping to maintain a clean and understandable commit history.
GitHub Actions: A CI/CD tool that allows you to automate your software development workflows directly in your GitHub repository.
goreleaser-action: A GitHub Action that integrates with Goreleaser, automating the process of building and releasing Go applications.
semantic-release-action: A GitHub Action that automates the release process based on semantic versioning, ensuring that releases are consistent and predictable.
Docker: Just release containers
I’m just throwing this blog post out there to get it started, and because otherwise I’ll never find the time to finish the perfect blog post. However, I’ve ported the majority of projects I maintain to use this stack now.
It can be a real effort to bring yourself to write articles to maintain a healthy blog, and sometimes the simple articles are best. Therefore, I just want to take a quick few moments to talk about a tool that I just cannot live without now-a-days, when writing Go code, I am always live-reloading with Air in the background.
It’s really valuable for developers to be able to get fast feedback on the code that they are writing. Many of use will use one monitor for the code in web applications, for example, and another monitor for the web browser to quickly glance to the side, and refresh the page. However with non-web applications, it can be a little more tedious to compile, re-run tests, and run the application once again. Of course it isn’t difficult - most developers of microservices and similar will have a terminal window open on that second monitor, and they’ll hit Up on the keyboard to get the last command, make, ./myapp, etc.
This helps you use Go to power the next generation of APIs+PWAs.
Prerequisites; This article assumes you know what protobuf and gRPC are, and have set up the grpc-gateway for REST already for your app.
The context
gRPC has become the default standard for modern Cloud Native RPC in Go. And gRPC is fine for backend service-to-service communication that can speak gRPC. To support older services, and the web, REST still reigns supreme.