<?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: Adam Makins</title>
    <description>The latest articles on Forem by Adam Makins (@aifiasco101).</description>
    <link>https://forem.com/aifiasco101</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%2F3775031%2Ff0ec8dff-e561-4ffc-9ed6-a39b7b81b84c.jpg</url>
      <title>Forem: Adam Makins</title>
      <link>https://forem.com/aifiasco101</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/aifiasco101"/>
    <language>en</language>
    <item>
      <title>Give it a try.</title>
      <dc:creator>Adam Makins</dc:creator>
      <pubDate>Wed, 18 Feb 2026 06:54:54 +0000</pubDate>
      <link>https://forem.com/aifiasco101/give-it-a-try-1icj</link>
      <guid>https://forem.com/aifiasco101/give-it-a-try-1icj</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/aifiasco101" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3775031%2Ff0ec8dff-e561-4ffc-9ed6-a39b7b81b84c.jpg" alt="aifiasco101"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/aifiasco101/is-docmd-the-fastest-way-to-ship-docs-an-honest-look-at-the-new-v04-release-12n6" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Is docmd the fastest way to ship docs? An honest look at the new v0.4 release.&lt;/h2&gt;
      &lt;h3&gt;Adam Makins ・ Feb 18&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#node&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#productivity&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>node</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Is docmd the fastest way to ship docs? An honest look at the new v0.4 release.</title>
      <dc:creator>Adam Makins</dc:creator>
      <pubDate>Wed, 18 Feb 2026 06:50:50 +0000</pubDate>
      <link>https://forem.com/aifiasco101/is-docmd-the-fastest-way-to-ship-docs-an-honest-look-at-the-new-v04-release-12n6</link>
      <guid>https://forem.com/aifiasco101/is-docmd-the-fastest-way-to-ship-docs-an-honest-look-at-the-new-v04-release-12n6</guid>
      <description>&lt;p&gt;We are spoiled for choice with documentation generators. Docusaurus, MkDocs, VitePress... do we really need another one?&lt;/p&gt;

&lt;p&gt;I recently took &lt;strong&gt;docmd&lt;/strong&gt; (specifically the new v0.4.0 monorepo release) for a spin to document a small Node.js library. The promise is "Zero Config" and "Static HTML."&lt;/p&gt;

&lt;p&gt;Here is my honest take on where it shines, where it falls short, and who should use it.&lt;/p&gt;

&lt;h2&gt;
  
  
  👍🏼 The Good Stuff
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Actually Zero Config&lt;/strong&gt;&lt;br&gt;
You run &lt;code&gt;docmd init&lt;/code&gt;, then &lt;code&gt;docmd build&lt;/code&gt;. That’s it. You get a &lt;code&gt;site/&lt;/code&gt; folder ready for Netlify or GitHub Pages. There is no complex config file unless you &lt;em&gt;want&lt;/em&gt; to change defaults.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The "Live" Architecture&lt;/strong&gt;&lt;br&gt;
This is the coolest technical feature. Because the core engine is isomorphic, the &lt;code&gt;docmd live&lt;/code&gt; command opens a browser-based editor that renders changes instantly. It doesn't feel like a "hot reload" (which takes 500ms+); it feels like typing in a native app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Built-in Offline Search&lt;/strong&gt;&lt;br&gt;
Most static site generators force you to set up Algolia DocSearch. That involves applying for an account, setting up API keys, and configuring CI crawlers.&lt;br&gt;
&lt;code&gt;docmd&lt;/code&gt; generates a &lt;code&gt;search-index.json&lt;/code&gt; locally. Search works out of the box, is privacy-friendly, and works offline.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. AI Readiness&lt;/strong&gt;&lt;br&gt;
It automatically generates an &lt;code&gt;llms.txt&lt;/code&gt; file. If you use tools like Cursor or ChatGPT to query your own docs, this is a massive quality-of-life feature that I haven't seen standard in other tools yet.&lt;/p&gt;

&lt;h2&gt;
  
  
  👎🏼 The "Fallbacks" (Areas for Improvement)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. No MDX (Yet)&lt;/strong&gt;&lt;br&gt;
If you are coming from Docusaurus, you might be used to importing React components directly into your Markdown files (MDX). &lt;code&gt;docmd&lt;/code&gt; is strict Markdown + HTML. You cannot import a &lt;code&gt;&amp;lt;Counter /&amp;gt;&lt;/code&gt; component. If you need complex interactivity inside your docs, stick to React-based generators.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Theming Limitations&lt;/strong&gt;&lt;br&gt;
The built-in themes (Sky, Retro, Ruby) are nice, and you &lt;em&gt;can&lt;/em&gt; inject custom CSS. But there isn't any robust "Theme Builder" UI yet. If you want to drastically change the layout (e.g., move the sidebar to the right), you'll be writing raw CSS overrides.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Ecosystem Size&lt;/strong&gt;&lt;br&gt;
It’s a newer tool. The plugin system is fresh (from what I see, just recently introduced in v0.4+). While it has the essentials (SEO, Analytics, Mermaid, Sitemap), it doesn't have the massive plugin library of MkDocs or Gatsby, although it's a little early to say how the whole ecosystem evolves.&lt;/p&gt;

&lt;h2&gt;
  
  
  😇 My Opinion
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;docmd&lt;/strong&gt; has carved out a specific niche: &lt;strong&gt;Performance and Simplicity.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Use docmd if:&lt;/strong&gt; You are a library author, you hate configuring build tools, or you want a site that loads instantly on 3G networks because it sends zero JavaScript bloat to the client.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Stick to Docusaurus if:&lt;/strong&gt; You are building a massive enterprise site that needs versioning dropdowns for 10 different software versions, or if you need MDX interactivity.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For my personal projects and NPM packages? I’m switching to &lt;code&gt;docmd&lt;/code&gt;. The speed of the workflow is just addictive.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you want to give it a go:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://docmd.io" rel="noopener noreferrer"&gt;https://docmd.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Adam Makins</dc:creator>
      <pubDate>Mon, 16 Feb 2026 06:58:25 +0000</pubDate>
      <link>https://forem.com/aifiasco101/-25hm</link>
      <guid>https://forem.com/aifiasco101/-25hm</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mgks" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3404228%2Ffe6f8dbb-fb6b-4769-b3a4-a33976f4565b.jpg" alt="mgks"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mgks/why-i-rewrote-my-cli-tool-into-an-isomorphic-monorepo-592" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Why I rewrote my CLI tool into an Isomorphic Monorepo&lt;/h2&gt;
      &lt;h3&gt;Ghazi ・ Feb 16&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#productivity&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


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