I Built 30+ Free Online Tools with Vanilla JS - No Frameworks, No Signup
A developer created Vaultool, a collection of over 30 free online tools built with vanilla JavaScript. These tools prioritize user privacy by running entirely in the browser without data leaving the device. Users can access utilities like JSON formatting, image compression, and more without any signup requirements.
- ▪Vaultool includes tools for developers and general users, such as a JSON formatter and a word counter.
- ▪All tools are designed to run client-side, ensuring no data is sent to external servers.
- ▪The project is partially open-sourced, with four core tools available for anyone to use.
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 === 3954496) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } gqc58 Posted on May 27 I Built 30+ Free Online Tools with Vanilla JS - No Frameworks, No Signup #javascript #showdev #tooling #webdev I Built 30+ Free Online Tools with Vanilla JS – No Frameworks, No Signup Why I Built This As a developer, I constantly need quick utilities: formatting JSON, encoding base64, counting words, compressing images… Most “free” tools out there: Force you to sign up Are bloated with ads Send your data to their servers Use heavy frameworks that slow…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).