Launching today
DevTab
110+ dev tools. One tab. Zero server calls.
9 followers
110+ dev tools. One tab. Zero server calls.
9 followers
110 free developer tools that run entirely in your browser — JSON formatter, JWT decoder, regex tester, base64, diff checker, SQL formatter, and 100+ more. No uploads. No server. No signup.






@abhilaksh_arora That much!! tools in single web app. Now, I do not have to scroll different different websites for these tools.
Thanks man.
@rohitnirban That's exactly why I built it! No more tab switching between 10 different sites. Glad it helps 🙏
How do you handle really large files like massive JSON payloads, does it still stay snappy or does the browser start to choke at a certain size?
@aysunvcyf Great question! Since everything runs in the browser, performance depends on the device — but for most JSON payloads (even a few MB) it stays snappy. For truly massive files (50MB+) the browser can slow down, which is a known limitation of the client-side approach. Working on adding Web Workers for heavy processing so the main thread never blocks. Will keep you posted!
How do you handle tools that usually need to call an external API, like an OpenAPI tester or anything that hits a real endpoint, since everything runs purely client-side?
@glayalatala1n3 Really good point. Tools that need to hit a real endpoint (like an API tester) are the one exception to the zero-server-calls rule — those requests have to go somewhere by nature. For those tools specifically, the request goes directly from your browser to the target API — DevTab itself never sees it. So still no middleman, just a different trust model. OpenAPI tester is on the roadmap — will make sure this is clearly communicated when it ships!
would love a way to save my frequently used tools as a custom sidebar, plus maybe a quick keyboard shortcut to jump between tools. also adding a dark/light theme toggle would be nice since some of these visual tools are easier on the eyes in dark mode
@idem1v1s Love all three of these! Dark/light theme toggle is actually already there — check the top right corner 🙂 ⌘K keyboard shortcut to jump between tools is coming in the next release. Custom sidebar with pinned/favourite tools is a great shout — adding it to the roadmap. Thanks for the detailed feedback Çiğdem, this is exactly the kind of thing that shapes what gets built next 🙏