HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jackprescott

no profile record

Submissions

[untitled]

1 points·by jackprescott·6개월 전·0 comments

Show HN: Go-brrr – Benchmarks Go vs. Go and declares a winner anyway

github.com
1 points·by jackprescott·6개월 전·0 comments

Show HN: Marten – Elegant Go web framework (nothing in the way)

github.com
19 points·by jackprescott·6개월 전·5 comments

comments

jackprescott
·6개월 전·discuss
Thanks! Means a lot coming from you—glad the clean design shines through.
jackprescott
·6개월 전·discuss
Marten is built around one simple idea: "the framework you reach for when you want nothing in the way." It keeps full stdlib purity (untouched context.Context, zero external deps) but refuses to force you into boilerplate: clean Gin-like helpers (c.JSON, c.Bind, c.Param) + production middleware included by default (gzip, CORS, secure headers, rate limiting, timeout, etc.). So you get Chi-level cleanliness with meaningful productivity gains right from the first handler—no extra packages, no compromises.
jackprescott
·6개월 전·discuss
Hey HN!

I have built this cool Go web framework Marten which is a lightweight, zero-external-dependency Go web framework built around the philosophy: "The framework you reach for when you want nothing in the way."

Key points: - Stdlib context remains untouched (no custom wrapping) - Thin *Ctx helper for ergonomics: c.JSON(), c.Bind(), c.Param(), c.Status(), etc. - Built-in production middleware: gzip, CORS, secure headers, rate limiting, timeout, recover, etc. - Radix router, route groups, graceful shutdown, context pooling

Repo: https://github.com/gomarten/marten

It's very early (v0.1.x). Feedback, questions, or thoughts on what might be missing are very welcome!