<?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: Richard</title>
    <description>The latest articles on DEV Community by Richard (@claimo_me).</description>
    <link>https://dev.to/claimo_me</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%2F4063567%2F972325e4-38a2-4f79-ba3e-3a5a7c5a2452.png</url>
      <title>DEV Community: Richard</title>
      <link>https://dev.to/claimo_me</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/claimo_me"/>
    <language>en</language>
    <item>
      <title>I built a short-code marketplace with zero npm dependencies (Node.js 22, no framework)</title>
      <dc:creator>Richard</dc:creator>
      <pubDate>Wed, 05 Aug 2026 06:30:54 +0000</pubDate>
      <link>https://dev.to/claimo_me/i-built-a-short-code-marketplace-with-zero-npm-dependencies-nodejs-22-no-framework-2ag9</link>
      <guid>https://dev.to/claimo_me/i-built-a-short-code-marketplace-with-zero-npm-dependencies-nodejs-22-no-framework-2ag9</guid>
      <description>&lt;p&gt;I've been going back and forth on whether to share this — it's a pretty niche idea, and I wasn't sure if it's clever or just weird. But here's the technical side of it, which I figure this crowd might actually appreciate regardless.&lt;/p&gt;

&lt;p&gt;What I built: claimo.me — you claim a short code (2-4 letters, or a custom name) for a one-time fee, no subscription, permanently yours. Each code is configurable as a redirect link, a QR code, or a small profile card. There's also a "Claimo Map" — every possible code is a clickable pixel you can browse, inspired by the old Million Dollar Homepage.&lt;/p&gt;

&lt;p&gt;The part I actually want to talk about here: it's zero-dependency. No Express, no ORM, no build step — just Node.js 22+'s built-in http module and the new built-in node:sqlite. I wanted to see how far "just the standard library" actually gets you for something real — payments (Stripe), admin moderation, rate limiting, a live interactive map UI, the works.&lt;/p&gt;

&lt;p&gt;Some things that surprised me building it this way:&lt;/p&gt;

&lt;p&gt;node:sqlite's DatabaseSync is genuinely pleasant to use, but it's missing conveniences like better-sqlite3's .transaction() helper — I ended up writing a small manual BEGIN/COMMIT/ROLLBACK wrapper.&lt;br&gt;
Routing without a framework is maybe 40 lines of code and I stopped missing Express within a day.&lt;br&gt;
The real cost isn't runtime performance, it's losing the ecosystem — anything I'd normally npm install for free (input validation, rate limiting, even basic templating) I had to hand-roll. Some of that was genuinely good for me, some of it I'd reconsider on a bigger project.&lt;/p&gt;

&lt;p&gt;Business side, since half of you will ask: it's a real registered business, payments go through Stripe only (I never touch card data), no crypto, nothing weird. The paid tiers fund keeping a free short-link tier alive too.&lt;/p&gt;

&lt;p&gt;Honestly — is the zero-dependency thing a genuinely good call for a real production app, or am I just going to regret it in a year? And separately: does "own a short code" as a product idea make any sense to you, or does it feel like a solution looking for a problem? Happy to go deep on any part of the stack.&lt;/p&gt;

&lt;p&gt;claimo.me — and if you want to actually poke at it, PROMO50 at checkout gives free Countryside-tier codes (normally €2), just for honest feedback.&lt;/p&gt;

</description>
      <category>backend</category>
      <category>javascript</category>
      <category>node</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
