All tools
Every tool on devholster on one page, grouped by category. 73 of them so far, all running in your browser tab, all free and without an account. If you already know what you are looking for, the search below beats scrolling.
7 categories.
Nothing you paste is uploaded, and once a tool has loaded it keeps working offline. Free, no signup.
The parsers ship with the page, so a tool keeps working after you go offline.
Every tool runs the moment you type. No run button, no waiting, nothing to install.
No account, no paywall, no trial that expires. All 70+ tools, free for everyone.
Using web tools for real work
How can I tell whether an online tool uploads what I paste?
Open the network tab of your browser devtools, clear it, then use the tool and watch whether a request goes out while you type or when you press the button. A page that does the work locally makes no request at all beyond loading its own scripts. The stronger version of the test is to load the page, disconnect from the network and try again: anything that still works cannot have sent your input anywhere. A privacy policy is a promise, the network tab is evidence.
Is pasting company code into a web tool against policy?
In many organisations, yes, and the policy usually names the category rather than the site: source code, customer data and credentials must not be sent to third-party services without review. That is aimed at anything that transmits the input, which covers most online tools and every AI assistant, but not a page that computes in your own browser. Since the distinction is invisible from the outside, the defensible answer to a security review is a network capture, not a claim from the homepage.
When is a browser tool the wrong choice compared with a CLI?
When the file is large, when the job has to repeat, or when it has to run in CI. A browser tab holds the whole input in memory, so a multi-hundred-megabyte file belongs in a streaming command line tool, and anything that must run on every commit belongs in a script where it is versioned and reviewable. Web tools win for the one-off: a payload from a ticket, a config someone mailed you, a token you need decoded now, with nothing to install.