<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ali-Bulat Salamov</title>
    <description>The latest articles on DEV Community by Ali-Bulat Salamov (@alibulat_salamov_7f2165b).</description>
    <link>https://dev.to/alibulat_salamov_7f2165b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3957325%2F82337622-98be-4aa9-9995-fab9ee6f769f.png</url>
      <title>DEV Community: Ali-Bulat Salamov</title>
      <link>https://dev.to/alibulat_salamov_7f2165b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alibulat_salamov_7f2165b"/>
    <language>en</language>
    <item>
      <title>I Built 22 Free Browser-Based Tools — Here's What I Learned published: true tags: webdev, nextjs, typescript, javascript</title>
      <dc:creator>Ali-Bulat Salamov</dc:creator>
      <pubDate>Thu, 28 May 2026 21:04:54 +0000</pubDate>
      <link>https://dev.to/alibulat_salamov_7f2165b/i-built-22-free-browser-based-tools-heres-what-i-learned-published-true-tags-webdev-nextjs-4728</link>
      <guid>https://dev.to/alibulat_salamov_7f2165b/i-built-22-free-browser-based-tools-heres-what-i-learned-published-true-tags-webdev-nextjs-4728</guid>
      <description>&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;I kept the same dozen browser tabs pinned: a JSON formatter here, a regex tester there, a Base64 encoder on some ad-ridden site that tried to install a browser extension. One day I thought: what if I just built all of these myself under one roof?&lt;/p&gt;

&lt;p&gt;The result is &lt;a href="https://toolbox-hub-omega.vercel.app" rel="noopener noreferrer"&gt;ToolboxHub&lt;/a&gt; — a free collection of 22 browser-based utilities organized into four categories.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Tool List
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Developer Tools (9)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JSON Formatter — validate, beautify, minify&lt;/li&gt;
&lt;li&gt;Base64 Encoder/Decoder&lt;/li&gt;
&lt;li&gt;URL Encoder/Decoder&lt;/li&gt;
&lt;li&gt;UUID Generator (v1 and v4)&lt;/li&gt;
&lt;li&gt;Hash Generator (MD5, SHA-1, SHA-256, SHA-512)&lt;/li&gt;
&lt;li&gt;Regex Tester with real-time match highlighting&lt;/li&gt;
&lt;li&gt;JWT Decoder (inspect header and payload)&lt;/li&gt;
&lt;li&gt;CSS Minifier&lt;/li&gt;
&lt;li&gt;Markdown Preview (live side-by-side editor)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Text Tools (2)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Word Counter (words, characters, sentences, reading time)&lt;/li&gt;
&lt;li&gt;Lorem Ipsum Generator&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Calculators (5)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Percentage Calculator&lt;/li&gt;
&lt;li&gt;BMI Calculator&lt;/li&gt;
&lt;li&gt;Tip Calculator with bill splitting&lt;/li&gt;
&lt;li&gt;Age Calculator&lt;/li&gt;
&lt;li&gt;Mortgage Calculator with amortization&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Converters (6)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unit Converter (length, weight, area, volume)&lt;/li&gt;
&lt;li&gt;Temperature Converter (C/F/K)&lt;/li&gt;
&lt;li&gt;Base Number Converter (binary, octal, decimal, hex)&lt;/li&gt;
&lt;li&gt;Timestamp Converter (Unix epoch to date and back)&lt;/li&gt;
&lt;li&gt;Color Converter (HEX, RGB, HSL, HSV)&lt;/li&gt;
&lt;li&gt;Color Picker with palette generation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 15&lt;/strong&gt; with the App Router and Server Components&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt; end-to-end&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; with a custom design token system using CSS variables&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel&lt;/strong&gt; for deployment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google AdSense&lt;/strong&gt; for monetization (non-intrusive)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Decisions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Client-side only processing
&lt;/h3&gt;

&lt;p&gt;Every tool runs entirely in the browser. No data is sent to any server. This was a deliberate choice: users trust tools more when they know their data stays local. It also means zero server costs for computation.&lt;/p&gt;

&lt;h3&gt;
  
  
  CSS variable theming
&lt;/h3&gt;

&lt;p&gt;Instead of juggling Tailwind dark mode classes everywhere, I created a set of design tokens as CSS variables (&lt;code&gt;--bg-card&lt;/code&gt;, &lt;code&gt;--text-primary&lt;/code&gt;, &lt;code&gt;--accent&lt;/code&gt;, etc.) that swap between light and dark values. Every component references these tokens. Adding a theme is just defining new variable values.&lt;/p&gt;

&lt;h3&gt;
  
  
  Single source of truth for tools
&lt;/h3&gt;

&lt;p&gt;All 22 tools are defined in one TypeScript configuration file. Each entry has a name, slug, description, category, icon, and keywords. The homepage, navigation, sitemap, and search all read from this single array. Adding a new tool means adding one config object and one route.&lt;/p&gt;

&lt;h3&gt;
  
  
  SEO from day one
&lt;/h3&gt;

&lt;p&gt;Each tool has its own route (&lt;code&gt;/tools/json-formatter&lt;/code&gt;, &lt;code&gt;/tools/regex-tester&lt;/code&gt;, etc.), unique meta tags, structured data (JSON-LD), and a canonical URL. The sitemap is generated automatically from the tools config.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons Learned
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Design tokens save enormous time.&lt;/strong&gt; Defining your color system once in CSS variables and referencing them everywhere makes theming, dark mode, and design consistency almost automatic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;AdSense approval is its own project.&lt;/strong&gt; It took longer to get approved than to build several of the tools. Having quality content, a privacy policy, an about page, and a contact page all helped.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;People care about privacy in tools.&lt;/strong&gt; Mentioning that everything is client-side and no data is collected resonates with users. It is a real differentiator.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Each tool page is a potential landing page.&lt;/strong&gt; Someone searching for "free JSON formatter online" can land directly on that tool. Each tool route is optimized as its own entry point.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Keep the scope small and ship.&lt;/strong&gt; 22 tools sounds like a lot, but most browser-based utilities are 200-400 lines of TypeScript. The hardest part was consistent UI, not the tool logic.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;I'm planning to add more tools based on user requests. If you have a browser-based utility you wish existed, I'd love to hear about it.&lt;/p&gt;

&lt;p&gt;Check it out: &lt;a href="https://toolbox-hub-omega.vercel.app" rel="noopener noreferrer"&gt;https://toolbox-hub-omega.vercel.app&lt;/a&gt;&lt;br&gt;
Product Hunt&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
