<?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: twtwa</title>
    <description>The latest articles on Forem by twtwa (@twtwt).</description>
    <link>https://forem.com/twtwt</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%2F3854263%2Fb215acfa-ffe2-4f0f-a8b6-e9f5d27c51ef.jpg</url>
      <title>Forem: twtwa</title>
      <link>https://forem.com/twtwt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/twtwt"/>
    <language>en</language>
    <item>
      <title>I built a zero-account, local-first notepad — and why I think most note apps are solving the wrong problem</title>
      <dc:creator>twtwa</dc:creator>
      <pubDate>Tue, 31 Mar 2026 21:51:59 +0000</pubDate>
      <link>https://forem.com/twtwt/i-built-a-zero-account-local-first-notepad-and-why-i-think-most-note-apps-are-solving-the-wrong-f8p</link>
      <guid>https://forem.com/twtwt/i-built-a-zero-account-local-first-notepad-and-why-i-think-most-note-apps-are-solving-the-wrong-f8p</guid>
      <description>&lt;h2&gt;
  
  
  The itch
&lt;/h2&gt;

&lt;p&gt;Every time I needed to jot something down quickly — a snippet, a URL, a half-formed idea at 1am — I'd open a new browser tab and start searching for a notepad tool.&lt;/p&gt;

&lt;p&gt;The results were always the same: sign up to save your notes. Connect your Google account. Install our desktop app. Enable cloud sync.&lt;/p&gt;

&lt;p&gt;For a notepad.&lt;/p&gt;

&lt;p&gt;I just wanted to type. So I built one.&lt;/p&gt;




&lt;h2&gt;
  
  
  What DarkNotepad actually is
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://darknotepad.com" rel="noopener noreferrer"&gt;DarkNotepad&lt;/a&gt; is a minimal online notepad with three hard constraints I set for myself:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;No account required&lt;/strong&gt; — ever. Not even optional.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Nothing leaves your browser&lt;/strong&gt; — notes live in &lt;code&gt;localStorage&lt;/code&gt;, full stop.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dark mode by default&lt;/strong&gt; — because most people who need a quick scratchpad are developers, and developers live in dark mode.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. No backend, no user table, no analytics that track what you type.&lt;/p&gt;




&lt;h2&gt;
  
  
  The stack (it's boring, intentionally)
&lt;/h2&gt;

&lt;p&gt;I kept it simple on purpose:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;React&lt;/strong&gt; + &lt;code&gt;react-router-dom&lt;/code&gt; for SPA routing&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;react-helmet-async&lt;/code&gt; for per-route meta tags (SEO without SSR)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;vercel.json&lt;/code&gt; rewrites to avoid 404s on page refresh for internal routes like &lt;code&gt;/about&lt;/code&gt; and &lt;code&gt;/blog&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;JSON-LD (&lt;code&gt;SoftwareApplication&lt;/code&gt; schema) in &lt;code&gt;index.html&lt;/code&gt; for rich snippets&lt;/li&gt;
&lt;li&gt;Deployed on &lt;strong&gt;Vercel&lt;/strong&gt; — free tier, zero config&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No database. No auth library. No backend whatsoever.&lt;/p&gt;

&lt;p&gt;The most interesting technical decision was actually the &lt;code&gt;vercel.json&lt;/code&gt; config. SPAs break hard on direct URL access because the server doesn't know about client-side routes. This one-liner fixes it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"rewrites"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"source"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"/(.*)"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"destination"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"/index.html"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Why local-first for a notepad?
&lt;/h2&gt;

&lt;p&gt;I think most tools default to server-side storage because that's what we're trained to build. But for ephemeral, personal notes — the kind you write and delete the same day — there's no good reason your data needs to leave your machine.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;localStorage&lt;/code&gt; gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Instant persistence&lt;/strong&gt; with zero latency&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works offline&lt;/strong&gt; by default&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No GDPR surface&lt;/strong&gt; — you literally don't have the data&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Zero infrastructure cost&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The tradeoff: notes don't sync across devices. For my use case (quick scratchpad, not a PKM system), that's fine. If you need cross-device sync, use Notion. DarkNotepad is for the 30-second use case.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I learned shipping this
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;SEO for tools is different from SEO for content.&lt;/strong&gt; The homepage competes on transactional keywords ("online notepad dark mode") where established players dominate. The real opportunity is long-tail informational content — articles about eye strain, privacy, local-first architecture. That's where a new domain can actually rank.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ship the privacy policy before anything else.&lt;/strong&gt; Not just for legal reasons — it's a trust signal that affects Google AdSense approval, user perception, and how seriously people take your tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Product Hunt and communities matter more than organic SEO at launch.&lt;/strong&gt; Google takes months. Humans take seconds.&lt;/p&gt;




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

&lt;ul&gt;
&lt;li&gt;More blog content targeting long-tail keywords&lt;/li&gt;
&lt;li&gt;Keyboard shortcuts&lt;/li&gt;
&lt;li&gt;Export to &lt;code&gt;.txt&lt;/code&gt; / &lt;code&gt;.md&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Maybe a word count — people keep asking&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to take a look: &lt;a href="https://darknotepad.com" rel="noopener noreferrer"&gt;darknotepad.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you're building something similar or have opinions on the local-first approach, I'd genuinely love to hear them in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>privacy</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
