v0.1.1 · Go 1.25

Fast, innovative web framework for Go.

Go-Irmik is a Gin-based meta-framework: thin core, wide opt-in catalog. File routes, SSR, and optional drivers.

$ go get github.com/boracomet/go-irmik installed
Go-Irmik mascot
Gin
opt-in
Go
1.25
MIT
license
GitHub stars
Gin
based core

Core and catalog

Thin core; import the packages you need and wire them in.

Idiomatic Go API

Gin-like router; little abstraction, clear surface.

main.go

Quick start

1

Install

Add to your module: go get github.com/boracomet/go-irmik

go get github.com/boracomet/go-irmik
2

Write

Create a router with irmik.New; define a route.

app := irmik.New()
app.GET("/", home)
3

Run

go run main.go, default :8080

go run main.go
# → :8080

Projects using Irmik

First example: this docs site. Others will be listed here as they appear.

Add a project →

Go-Irmik for day-to-day work

Admin panels, internal tools, SSR sites, and JWT REST APIs.