I built 21 free dev tools that never upload your data
A developer created ToolsStack, a collection of 21 free tools designed for web developers. These tools operate entirely in the browser, ensuring that no data is uploaded or tracked. The suite includes utilities for formatting JSON, encoding Base64, and generating UUIDs, among others.
- ▪ToolsStack features 21 developer tools that run 100% in the browser.
- ▪The tools include a JSON formatter, Base64 encoder, and GIF maker.
- ▪No signup, ads, or tracking is required to use the tools.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3965560) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } liljonjohnson-crypto Posted on Jun 3 I built 21 free dev tools that never upload your data #webdev #productivity #tools #javascript Every developer needs quick tools — JSON formatter, Base64 encoder, JWT decoder, regex tester, PDF compressor, GIF maker. But I always hesitated to paste sensitive data into random tool sites. Where does that data go? So I built ToolsStack — 21 tools that run 100% in your browser.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).