Back to browse
GitHub Repository

A modern Go framework for building web and CLI applications, with a strong focus on explicit configuration, determinism, and production readiness

3 starsGo

Melody v2.0.0 – Go framework with proper /v2 module and integrations

by adrianjele·Feb 18, 2026·1 point·0 comments

AI Analysis

MidNiche GemSolve My Problem
The Take

Melody v2 fixes a real pain: it ships a proper github.com/precision-soft/melody/v2 module and a go.work-based workspace so v1 and v2 can be used side-by-side without replace hacks. The release pairs that with practical, opinionated integrations — Bun ORM (mysql/pgsql/migrate) and a Rueidis Redis backend with prefix invalidation — plus controller autowire, router groups and a showcase app to demonstrate wiring. Not groundbreaking in the crowded Go web framework space, but it materially reduces friction for teams using Bun and modern Go modules.

Target Audience

Backend Go developers and teams building APIs and services

Post Description

Show HN — I’ve released Melody v2.0.0.

This release introduces a proper Go major module at https://github.com/precision-soft/melody/tree/main/v2 plus v2 integration modules, so v1 and v2 can be consumed side-by-side without hacks. Multi-module development is now workspace-based via go.work.

Since the initial v1 launch, Melody gained: RouteOptions + Router Groups, controller runtime autowire + contract signatures, stateless firewall mode, safer exception response handling, richer panic/error cause-chain logging, Bun ORM + Bun migrations integration, and a Rueidis-based Redis cache backend with prefix invalidation.

Repo: https://github.com/precision-soft/melody

Releases: https://github.com/precision-soft/melody/releases

Similar Projects