<?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>Forem: John D</title>
    <description>The latest articles on Forem by John D (@fmtly).</description>
    <link>https://forem.com/fmtly</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%2F3820807%2F9b427f54-46c5-4b8d-8be6-ff19ebc6e1c1.png</url>
      <title>Forem: John D</title>
      <link>https://forem.com/fmtly</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/fmtly"/>
    <language>en</language>
    <item>
      <title>I Built 75 Browser-Based Tools With Next.js and Zero Backend.</title>
      <dc:creator>John D</dc:creator>
      <pubDate>Thu, 12 Mar 2026 18:10:31 +0000</pubDate>
      <link>https://forem.com/fmtly/i-built-75-browser-based-tools-with-nextjs-and-zero-backend-167c</link>
      <guid>https://forem.com/fmtly/i-built-75-browser-based-tools-with-nextjs-and-zero-backend-167c</guid>
      <description>&lt;p&gt;&lt;strong&gt;No waitlists. No accounts. No paywalls. Just tools that work.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I kept running into the same problem: needed a quick text formatter, word counter, or list sorter — and every existing option was bloated, ad-heavy, or demanded an account before it would do anything.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://usefmtly.com" rel="noopener noreferrer"&gt;usefmtly.com&lt;/a&gt; — a collection of 75 browser-based tools covering text formatting, converters, random generators, list tools, and code utilities. The idea was straightforward: make useful tools that open instantly, solve one problem well, and don't demand an account, a trial, or your data before they do their job.&lt;/p&gt;

&lt;p&gt;That meant a few constraints from the start:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;no login&lt;/li&gt;
&lt;li&gt;no backend dependency for core functionality&lt;/li&gt;
&lt;li&gt;no "free trial"&lt;/li&gt;
&lt;li&gt;just open the page and use the tool&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything runs client-side. Nothing leaves your browser.&lt;/p&gt;

&lt;p&gt;Here's how I built it, what the stack looks like, and what I learned shipping it this way.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why 75 Tools?
&lt;/h2&gt;

&lt;p&gt;Partly because I like small utilities, and partly because this kind of product maps really well to search.&lt;/p&gt;

&lt;p&gt;The model is simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;useful tools capture action-oriented intent&lt;/li&gt;
&lt;li&gt;long-form guides capture informational intent&lt;/li&gt;
&lt;li&gt;internal links connect the two&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a tool targets something like &lt;strong&gt;"linkedin text formatter"&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;a guide targets something like &lt;strong&gt;"how to bold text on LinkedIn"&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Together they cover both "I need this now" and "I want to understand how this works."&lt;/p&gt;

&lt;p&gt;I focused on niches where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;monthly search volume was roughly 1k–500k&lt;/li&gt;
&lt;li&gt;keyword difficulty was under 20&lt;/li&gt;
&lt;li&gt;existing results were weak, outdated, or overloaded with ads&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then I built the tool, paired it with a guide when it made sense, and moved on.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;p&gt;The stack is intentionally minimal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Next.js 15 + React 19&lt;/strong&gt;&lt;br&gt;
Static export using &lt;code&gt;output: 'export'&lt;/code&gt;. No server, no API routes, no database. Every page is deployed as static HTML.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tailwind CSS&lt;/strong&gt;&lt;br&gt;
Shared design system and reusable components. Dark mode by default.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TypeScript&lt;/strong&gt;&lt;br&gt;
Typed tool registry, typed configs, typed component props. I wanted adding new tools to feel mechanical instead of fragile.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Vercel&lt;/strong&gt;&lt;br&gt;
Deploy from GitHub on every push.&lt;/p&gt;

&lt;p&gt;That's it.&lt;/p&gt;

&lt;p&gt;The simplicity is the point: it keeps the site fast, cheap to run, and easy to maintain.&lt;/p&gt;


&lt;h2&gt;
  
  
  How the Tool System Works
&lt;/h2&gt;

&lt;p&gt;Every tool is registered in a central registry:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;slug&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;linkedin-text-formatter&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;LinkedIn Text Formatter&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;category&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;text-tools&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Bold, italic &amp;amp; 20+ Unicode styles for LinkedIn posts.&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;keywords&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;linkedin formatter&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;bold text linkedin&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
  &lt;span class="nx"&gt;relatedTools&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;fancy-text-generator&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;small-text-generator&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;From the registry, the site auto-generates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the tool page at &lt;code&gt;/tools/[category]/[slug]&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;sitemap entry&lt;/li&gt;
&lt;li&gt;&lt;code&gt;llms.txt&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;related tools blocks&lt;/li&gt;
&lt;li&gt;category hub pages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So adding a new tool usually means:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;write the engine logic&lt;/li&gt;
&lt;li&gt;add the registry entry&lt;/li&gt;
&lt;li&gt;build the client component&lt;/li&gt;
&lt;li&gt;write the article content&lt;/li&gt;
&lt;li&gt;deploy&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I kept it to one Linear ticket per tool, which made the work much easier to manage.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Article Pattern That Saved Performance
&lt;/h2&gt;

&lt;p&gt;Each tool page includes an embedded SEO article, usually around 400–600 words covering what the tool does, when to use it, and related concepts.&lt;/p&gt;

&lt;p&gt;My early mistake was putting the article component inside a &lt;code&gt;'use client'&lt;/code&gt; file.&lt;/p&gt;

&lt;p&gt;The fix was simple: keep the article as a server component and pass it into the interactive client component as a prop.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// page.tsx (server component)&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;Page&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;FormatterToolClient&lt;/span&gt; &lt;span class="na"&gt;article&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;LinkedInFormatterArticle&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c1"&gt;// FormatterToolClient.tsx ('use client')&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;FormatterToolClient&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="nx"&gt;article&lt;/span&gt; &lt;span class="p"&gt;}:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nl"&gt;article&lt;/span&gt;&lt;span class="p"&gt;?:&lt;/span&gt; &lt;span class="nx"&gt;React&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;ReactNode&lt;/span&gt; &lt;span class="p"&gt;})&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="c1"&gt;// interactive tool logic here&lt;/span&gt;
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;ToolUI&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
      &lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;article&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That brought Lighthouse back to 100.&lt;/p&gt;

&lt;p&gt;The lesson was obvious in hindsight: render content on the server, keep the client boundary only around the interactive bits.&lt;/p&gt;




&lt;h2&gt;
  
  
  Shipping 75 Tools Without Losing Your Mind
&lt;/h2&gt;

&lt;p&gt;A few things made the project much easier to ship than I expected.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;One ticket at a time&lt;/strong&gt;&lt;br&gt;
Each tool got its own Linear ticket, its own commit, and its own deploy. No giant "tool batch" tasks. That forced me to actually finish things.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Shared components early&lt;/strong&gt; I built reusable pieces like &lt;code&gt;ToolLayout&lt;/code&gt;, &lt;code&gt;ToolCopyButton&lt;/code&gt;, &lt;code&gt;ThemeSwitcher&lt;/code&gt;, and &lt;code&gt;ToolToggle&lt;/code&gt; early. After that, consistency came almost for free.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Keyword research before implementation&lt;/strong&gt;&lt;br&gt;
Every tool started with keyword validation. If there wasn't search demand, I didn't build it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Static export as a constraint&lt;/strong&gt;&lt;br&gt;
Not having a backend removed a lot of tempting shortcuts. Every tool had to be genuinely browser-based.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




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

&lt;p&gt;75 tools across 5 categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Text tools&lt;/strong&gt; — LinkedIn formatter, word counter, case converter, glitch text, fancy text, strikethrough, and 20+ more&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Converters&lt;/strong&gt; — Hex/RGB/HSL, temperature, decimal/binary, number to words, Roman numerals&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;List tools&lt;/strong&gt; — alphabetical sorter, deduplicator, merge lists, list compare, randomizer&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Random generators&lt;/strong&gt; — colors, names, passwords, UUIDs, animals, countries, emojis&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code tools&lt;/strong&gt; — JSON/YAML formatter, HTML↔Markdown, CSV↔JSON, JWT decoder, ASCII art&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also added 18 long-form guides around adjacent informational keywords like word count, percentage calculators, lorem ipsum, and JSON formatting.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Numbers Right Now
&lt;/h2&gt;

&lt;p&gt;The site is still early.&lt;/p&gt;

&lt;p&gt;It's launched, indexed in Google Search Console, and now I'm waiting to see how rankings settle over the next few months.&lt;/p&gt;

&lt;p&gt;The bet is that 75 tools + 18 guides creates enough topical surface area for organic traffic to compound over time.&lt;/p&gt;

&lt;p&gt;We'll see if that plays out.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I'd Do Differently
&lt;/h2&gt;

&lt;p&gt;A few things are already obvious.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Build the guide layer earlier&lt;/strong&gt;&lt;br&gt;
I focused on tools first and guides second. In practice, those should have been built in parallel.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Set up rank tracking on day one&lt;/strong&gt;&lt;br&gt;
I didn't, and now I'm retroactively tracking a large batch of keywords instead of watching them from launch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lean into internal linking sooner&lt;/strong&gt;&lt;br&gt;
Once you have dozens of tools, the structure matters almost as much as the individual pages.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Like This Model
&lt;/h2&gt;

&lt;p&gt;I like products that stay small and useful.&lt;/p&gt;

&lt;p&gt;No onboarding.&lt;br&gt;
No "book a demo."&lt;br&gt;
No friction between intent and action.&lt;/p&gt;

&lt;p&gt;Just pages that load fast and do one thing well.&lt;/p&gt;

&lt;p&gt;For utility sites, that feels like the right tradeoff.&lt;/p&gt;




&lt;h2&gt;
  
  
  Check It Out
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://usefmtly.com" rel="noopener noreferrer"&gt;usefmtly.com&lt;/a&gt; — free, no account, no ads (for now).&lt;/p&gt;

&lt;p&gt;If you've built anything similar — utility sites, SEO-first products, or small tools with a static architecture — I'd love to hear what worked for you.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Next.js 15, React 19, Tailwind, TypeScript, and Vercel. All tools run client-side.&lt;/em&gt;&lt;/p&gt;

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