As a developer, I kept running into the same problem:
Every time I needed to do something simple β format JSON, decode a JWT, generate a UUID β I had to either install a tool or search for one online.
Some required login. Some sent data to servers. Some were just slow.
So I started building small tools that run directly in the browser.
Over time, it turned into a collection of 100+ tools.
Modern browsers are powerful enough to handle most developer utilities locally.
That means:
No installation
Instant performance
Better privacy (no data leaves your machine)
For example, formatting JSON or converting HTML to Markdown doesn't actually require a backend at all.
Here are some tools I ended up using the most:
Converts HTML into clean Markdown format. Useful when writing documentation or GitHub README files.
Helps debug API responses quickly by formatting and validating JSON.
Handy when dealing with encoded data in APIs.
Instead of manually rewriting HTML:
<h1>Hello</h1>
<p>This is <strong>test</strong></p>
You get:
# Hello
This is **test**
One thing I cared about was making sure everything runs client-side.
So none of these tools send your data anywhere β everything happens locally in your browser.
This started as a small side project to solve my own problems, but it turned out to be something I use daily.
If you're building tools like this, I'd recommend trying to push more logic into the browser β it's simpler than most people think.
(if you're curious, I shared it here)
No responses yet.