<?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: Jacob</title>
    <description>The latest articles on DEV Community by Jacob (@radka_cc918a65acc53adb5ce).</description>
    <link>https://dev.to/radka_cc918a65acc53adb5ce</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4140084%2F213d8d5b-f5df-4d9d-919f-55fe26091658.png</url>
      <title>DEV Community: Jacob</title>
      <link>https://dev.to/radka_cc918a65acc53adb5ce</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/radka_cc918a65acc53adb5ce"/>
    <language>en</language>
    <item>
      <title>I built 100+ browser tools as a side project — here’s what I learned</title>
      <dc:creator>Jacob</dc:creator>
      <pubDate>Wed, 23 Sep 2026 21:36:45 +0000</pubDate>
      <link>https://dev.to/radka_cc918a65acc53adb5ce/i-built-100-browser-tools-as-a-side-project-heres-what-i-learned-1k0h</link>
      <guid>https://dev.to/radka_cc918a65acc53adb5ce/i-built-100-browser-tools-as-a-side-project-heres-what-i-learned-1k0h</guid>
      <description>&lt;p&gt;I’ve been working on a side project called FroggoTools.&lt;/p&gt;

&lt;p&gt;It started pretty simply.&lt;/p&gt;

&lt;p&gt;I use small online tools all the time — calculators, converters, date utilities, generators, formatting tools, etc.&lt;/p&gt;

&lt;p&gt;And I kept having the same experience:&lt;/p&gt;

&lt;p&gt;I search for something simple, open a website, and before I can actually use the tool I have to deal with cookie banners, popups, slow pages, unnecessary navigation or a huge wall of text.&lt;/p&gt;

&lt;p&gt;So I thought:&lt;/p&gt;

&lt;p&gt;Why not just build my own toolbox?&lt;/p&gt;

&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;FroggoTools is basically a collection of small browser-based utilities.&lt;/p&gt;

&lt;p&gt;The rules I try to follow are simple:&lt;/p&gt;

&lt;p&gt;no account required&lt;br&gt;
open the tool and use it immediately&lt;br&gt;
keep the UI simple&lt;br&gt;
make it work well on mobile&lt;br&gt;
process things directly in the browser whenever possible&lt;br&gt;
don't make a simple task feel complicated&lt;/p&gt;

&lt;p&gt;The project has now grown to more than 100 pages/tools and it has become a much more interesting project than I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  Client-side whenever it makes sense
&lt;/h2&gt;

&lt;p&gt;One of the main ideas behind the project is that a lot of small utilities simply don't need a backend.&lt;/p&gt;

&lt;p&gt;If I'm calculating the difference between two dates, converting a value or generating random data, there is often no reason to send the input to a server.&lt;/p&gt;

&lt;p&gt;So I try to keep those operations completely client-side.&lt;/p&gt;

&lt;p&gt;That gives me two nice benefits:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Speed&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There is no unnecessary API request.&lt;/p&gt;

&lt;p&gt;And:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Data doesn't need to leave the user's browser for many of the tools.&lt;/p&gt;

&lt;p&gt;Obviously not every future tool will necessarily work this way, but it's the default approach I prefer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building one tool is easy. Building 100 consistent tools isn't.
&lt;/h2&gt;

&lt;p&gt;This was probably the biggest thing I underestimated.&lt;/p&gt;

&lt;p&gt;Building a percentage calculator is easy.&lt;/p&gt;

&lt;p&gt;Building calculators, converters, date tools, generators and developer utilities while making all of them feel like they belong to the same product is much harder.&lt;/p&gt;

&lt;p&gt;You suddenly have to think about things like:&lt;/p&gt;

&lt;p&gt;consistent inputs&lt;br&gt;
validation&lt;br&gt;
result formatting&lt;br&gt;
copy buttons&lt;br&gt;
mobile layouts&lt;br&gt;
accessibility&lt;br&gt;
empty states&lt;br&gt;
error handling&lt;br&gt;
navigation&lt;br&gt;
discoverability&lt;/p&gt;

&lt;p&gt;A small UX decision becomes important because you'll repeat it across dozens of tools.&lt;/p&gt;

&lt;p&gt;I've ended up spending quite a lot of time on the shared experience instead of just adding more tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO for a toolbox is also interesting
&lt;/h2&gt;

&lt;p&gt;Another thing I'm learning is how search engines treat a completely new domain with many utility pages.&lt;/p&gt;

&lt;p&gt;Technically the site is in good shape.&lt;/p&gt;

&lt;p&gt;My latest crawl covers around 110 HTML pages with no broken pages, no orphan pages and no duplicate-content issues.&lt;/p&gt;

&lt;p&gt;But technical SEO alone obviously doesn't mean Google suddenly puts a new domain on page one.&lt;/p&gt;

&lt;p&gt;Some tools are already getting search impressions, while others are barely visible.&lt;/p&gt;

&lt;p&gt;For example, Google has started testing some of my date and calculator pages for long-tail searches even though the domain is still very new.&lt;/p&gt;

&lt;p&gt;That has made me rethink the strategy a little.&lt;/p&gt;

&lt;p&gt;Instead of blindly adding hundreds of tools, I'm starting to focus more on improving the tools that already show some search demand.&lt;/p&gt;

&lt;h2&gt;
  
  
  Distribution is harder than building
&lt;/h2&gt;

&lt;p&gt;This is probably the biggest lesson so far.&lt;/p&gt;

&lt;p&gt;As a developer, building another feature always feels productive.&lt;/p&gt;

&lt;p&gt;Marketing doesn't.&lt;/p&gt;

&lt;p&gt;It's much easier to spend an evening adding three more tools than trying to figure out:&lt;/p&gt;

&lt;p&gt;where to share the project&lt;br&gt;
how to earn backlinks&lt;br&gt;
which communities actually care&lt;br&gt;
which tools people genuinely want&lt;br&gt;
what is worth improving&lt;/p&gt;

&lt;p&gt;But a technically good project that nobody knows about is still a project nobody uses.&lt;/p&gt;

&lt;p&gt;So I'm trying to spend more time on distribution now instead of only writing code.&lt;/p&gt;

&lt;p&gt;What's next&lt;/p&gt;

&lt;p&gt;Right now I'm focusing on:&lt;/p&gt;

&lt;p&gt;improving the tools that already get search impressions&lt;br&gt;
adding useful tools instead of adding pages just for the sake of page count&lt;br&gt;
better internal discovery between related tools&lt;br&gt;
getting feedback from actual users&lt;br&gt;
learning more about SEO and distribution&lt;/p&gt;

&lt;p&gt;The project is still early and I'm changing things constantly.&lt;/p&gt;

&lt;p&gt;If you want to take a look, it's here:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://froggotools.com" rel="noopener noreferrer"&gt;https://froggotools.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I'd genuinely be interested in feedback from other developers.&lt;/p&gt;

&lt;p&gt;Especially:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What small browser tool do you keep Googling because you still haven't found one you really like?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That might become the next FroggoTools tool.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>sideprojects</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
