No—avoid a global Echo router. Create the router during application composition and pass it to route registration or the component that owns the server lifecycle. This keeps dependencies explicit, prevents shared mutable state between tests, and supports multiple server instances. ```go type App struct { Echo *echo.Echo } func NewApp(deps Dependencies) *App { e := echo.New() e.Use(middleware.Logger(), middleware.Recover()) registerRoutes(e, deps) e.GET("/health", healthHandler) e.GET("/ready"...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill golang-api-server --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Golang Api Server?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-golang-api-server-26021a71)More formats (shields.io, HTML) on the badges page.
No—avoid a global Echo router. Create the router during application composition and pass it to route registration or the component that owns the server lifecycle. This keeps dependencies explicit, prevents shared mutable state between tests, and supports multiple server instances.
```go
type App struct {
Echo *echo.Echo
}
func NewApp(deps Dependencies) *App {
e := echo.New()
e.Use(middleware.Logger(), middleware.Recover())
registerRoutes(e, deps)
e.GET("/health", healthHandler)
e.GET("/ready", readyHandler)
return &App{Echo: e}
}
func main() {
app := NewApp(loadDependencies())
// Start app.Echo through an http.Server and add signal-aware graceful shutdown.
if err := app.Echo.Start(":8080"); err != nil && !errors.Is(err, http.ErrServerClosed) {
log.Fatal(err)
}
}
```
Inject services into handlers and keep middleware and route registration in startup code. Package-level constants and stateless helpers are fine; mutable router state should belong to the application instance.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!