frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: Diom – Open-source back end primitives with no runtime dependencies

https://github.com/svix/diom
4•tasn•5h ago
Hey HN, my name is Tom, and I'm excited to share Diom (https://diom.com) - a backend components server.

Diom includes implementations for common backend primitives such as cache, key-value, idempotency, rate-limiting, queues, and streams, with more on the way.

While building Svix, we had to reimplement the same backend primitives that everyone have to reimplement. We also constantly felt the tension between building something custom on top of existing infra (like Redis and Postgres) and adding more dedicated services (like RabbitMQ and Kafka) which we would then need to configure, operate, back up, and maintain. This was even worse for us because Svix is open-source, so additional infrastructure meant additional burden on our customers.

Six months ago we finally decided to build Diom, and focus on developer experience and ease of operation. It's open source, self-contained, and manages its own storage using fjall (a fast LSM-tree-based storage similar to RocksDB). It requires no external runtime dependencies (no redis/postgres/kafka/etc), and supports running as a single node or a highly-available Raft based cluster.

The goal of Diam is to provide developers with the backend primitives they need without having to write custom code on top of Redis, RabbitMQ, Kafka, or even need to run them at all. It currently supports cache, key-value, idempotency, rate-limiting, queues, and streams. We also plan on adding auth-tokens, distributed settings, feature flags, and other common components; as well as adding more functionality to existing components.

Diom favors ease of operation over scale, so it doesn't match Kafka-level throughput or very high QPS like Redis and Dragonfly. However, most products and developers don't process multiple terabytes and billions of events per second anyway. That said, Diom can still hit high performance for its target use-cases as it implements higher-level primitives rather than basic operations. Additionally, because the primitives live in the same process as the storage, there are fewer network round-trips, which keeps latency low.

It uses HTTP/2 with msgpack as the wire protocol (works fine from browsers), and ships a CLI and SDKs for Python, TypeScript, Rust, Go, and Java, with more on the way.

We have Svix fully ported to Diom and continuously running tests and simulated workloads in one of our staging environments. GA (general availability) is planned for later this year, once we've moved Svix production workloads over.

Repo (MIT licensed): https://github.com/svix/diom

Docs: https://docs.diom.com

Live playground: https://diom.com/playground

I'm excited to finally share Diom, and would love to hear what everyone thinks, and what other components you would like us to build! Would also love help figuring out what to call this. We currently say "component platform," but I'm not a fan of the name.

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
583•HenryNdubuaku•23h ago•172 comments

Show HN: Gigacatalyst – Extend your SaaS with an embedded AI builder

53•namanyayg•1d ago•20 comments

Show HN: Ratify Protocol – prove who authorized an AI agent, offline, in <1ms

https://github.com/identities-ai/ratify-protocol
3•chuks•1h ago•0 comments

Show HN: Torrix, self hosted, LLM Observability,(no Postgres, no Redis)

https://github.com/torrix-ai/install
18•AdarshRao23•5h ago•0 comments

Show HN: Agentic interface for mainframes and COBOL

https://www.hypercubic.ai/hopper
84•sai18•1d ago•44 comments

Show HN: Statewright – Visual state machines that make AI agents reliable

https://github.com/statewright/statewright
109•azurewraith•1d ago•50 comments

Show HN: Splice – A programming language with custom VM for embedded systems

https://github.com/Open-Splice/Splice
2•amitabhi•2h ago•0 comments

Show HN: Mainline – a project tool with no backlog, story points or surveillance

https://mainline.dev/demo
3•natyoung•2h ago•0 comments

Show HN: DAGraph – local-first reactive graph from arithmetic to OLAP SQL

https://dagraph.com
6•notfirstpost•3h ago•1 comments

Show HN: FixMyNPM, CLI to fix your insecure npm config

https://github.com/madhugb/FixMyNPM
9•madospace•5h ago•1 comments

Show HN: Chimera, a leaderless runtime with selectable settlement profiles

https://chimera.sigil.black/demo
3•SIGILonHN•3h ago•0 comments

Show HN: Mistle – Open-source infrastructure for running sandboxed coding agents

https://github.com/mistlehq/mistle
4•jonathanlowhy•3h ago•0 comments

Show HN: TrueCitation – academic source credibility checker (URL/DOI/journal)

https://truecitation.com/
4•kitchendesign•3h ago•1 comments

Show HN: Vim file browser that runs in separate terminal

https://github.com/hoffa/vitree
4•crehn•3h ago•0 comments

Show HN: Promptcellar – capture every Claude Code prompt as JSONL in your repo

https://github.com/dominiek/promptcellar-for-claude-code
6•dominiek•3h ago•0 comments

Show HN: Hashiverse, an open-source decentralized social network in Rust

https://www.hashiverse.com/en/
2•jamesjardine•4h ago•0 comments

Show HN: Rotunda - A browser built for agents with simulated typing

https://github.com/monkeysee-ai/rotunda
6•icyfox•4h ago•0 comments

Show HN: Twatch – Rewind, search, and diff TUI applications

https://github.com/blacknon/twatch
2•blacknon•4h ago•0 comments

Show HN: HookGuard – scanner for malicious Claude.md and agent config files

https://github.com/Fredbcx/hookguard
2•MerriBan•4h ago•0 comments

Show HN: AgentKanban for VS Code – A task board with agent harness integration

https://www.agentkanban.io/
4•gbro3n•7h ago•0 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
183•ciwrl•2d ago•71 comments

Show HN: Chrome extension that blocks API keys from being pasted into AI tools

https://github.com/carlgaopapi-png/vaultbix-extension
4•shiqingao•4h ago•2 comments

Show HN: Oicana – PDF templating with Typst, 6 server SDKs and browser WASM

https://oicana.com/news/2026-05-09-public-beta/
3•niklasei•4h ago•0 comments

Show HN: Gox – Strict static analyzer for Go designed for LLM-written code

https://github.com/mentasystems/gox
2•kidandcat•5h ago•0 comments

Show HN: Kunobi 1.0 – A local-first Kubernetes workspace for GitOps teams

https://kunobi.ninja/blog/kunobi-v1
4•kunobi•5h ago•1 comments

Show HN: Diom – Open-source back end primitives with no runtime dependencies

https://github.com/svix/diom
4•tasn•5h ago•0 comments

Show HN: Pqurp – Quarantine Window for Packages to Prevent Supply Chain Attacks

https://github.com/melbahja/draft-pqurp
3•exec7•6h ago•0 comments

Show HN: Monghoul – Desktop MongoDB GUI with schema-aware autocomplete and MCP

https://monghoul.com/
6•kontsedal•7h ago•0 comments

Show HN: Hollow – A local multi-agent OS that builds its own tools

https://github.com/ninjahawk/hollow-agentOS
2•ninjahawk1•7h ago•0 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
119•tsiry•4d ago•26 comments