Show HN: Prod.bd – Open-Source Ngrok Alternative Powered by Cloudflare Workers
mrmillon Saturday, February 14, 2026I'm building prod.bd, a lightweight open-source tunnel for exposing localhost services to the internet.
I originally made it because I often need to test frontend apps on real mobile devices during development. While tools like Ngrok and Tailscale Funnel work well, I wanted build something on my own.
You install it with a single command and then just run:
`prod 3000 8080`
It also has docker container too if you don't want to run untrusted binary.
It instantly gives you two HTTPS subdomain URLs that are publicly accessible. Subdomains are consistent for each port. It provides a simple stats dashboard to inspect url, headers and payload.
Under the hood, it uses Cloudflare's Workers, Durable Objects and D1. You can deploy your own version if you want.
I have used Kiro and Antigravity to build it. I wanted to experiment with AI tools while building something useful. On a side note, I am experimenting with plugin system to add new features while keeping core tunnel simple. Without AI tools, I would never try plugin system.
Would love feedback, suggestions, or ideas for improvement.