sql-tap is a transparent proxy that captures SQL queries by parsing the PostgreSQL/MySQL wire protocol and displays them in a terminal UI. You can run EXPLAIN on any captured query. No application code changes needed β just change the port.
Stories by mickamy
Hi HN, I shared sql-tap here a few weeks ago β a transparent SQL proxy that captures every query and lets you inspect it in real-time. Thanks for the feedback last time.<p>Two big additions:<p>*Built-in Web UI* β Add `--http=:8080` and open your browser. It's a zero-dependency vanilla JS SPA em...
Hi HN, I shared sql-tap here a few weeks ago β a transparent SQL proxy that captures every query and lets you inspect it in real-time. Thanks for the feedback last time.<p>The biggest addition: *a built-in Web UI*. Add `--http=:8080` and open your browser β queries stream in via SSE, you can click t...
Injector is a small Go DI code generator where the entire wiring
lives in struct field tags.<p>No provider sets, no DSL, no runtime reflection.
Just Go types and generated code.<p>Looking for feedback on the approach.
I recently built go-sqs-worker, a Go library for managing asynchronous jobs using AWS SQS. Itβs designed to strike a balance between simplicity and scalability, addressing common backend needs like background email processing or task retries without the complexity of Kafka or AWS Step Functions.<p>F...