HitKeep is a privacy-first web analytics platform you can self-host or run in managed EU/US cloud regions. Single binary, zero external dependencies, cookie-free by default.
No reviews yetBe the first to leave a review for HitKeep
Maker
📌
I built HitKeep because I got tired of running Postgres + Redis + ClickHouse just to count page views across a few sites.
HitKeep is a single Go binary that embeds everything: DuckDB for columnar storage, NSQ as an in-process message broker, and the full dashboard compiled in via embed.FS.
The hardest problem was DuckDB's single-writer constraint. Embedding NSQ in-process solved it — the HTTP handler enqueues to memory, a consumer batches writes through DuckDB's appender API. The write path never blocks on disk.
Try the live demo: https://demo.hitkeep.com (real data, no login needed)
MIT licensed, no open-core gating. There's a managed cloud option for teams that don't want to self-host.
GitHub: https://github.com/pascalebeier/...