<?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: Brian Sprout</title>
    <description>The latest articles on DEV Community by Brian Sprout (@bsprout431).</description>
    <link>https://dev.to/bsprout431</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%2F3406735%2Facef912e-b40f-4a03-90cb-ec29c6703904.jpg</url>
      <title>DEV Community: Brian Sprout</title>
      <link>https://dev.to/bsprout431</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bsprout431"/>
    <language>en</language>
    <item>
      <title>Best Lightweight Docusaurus Alternative? I Think It’s "docmd" - A Refreshingly Minimal Docs Generator</title>
      <dc:creator>Brian Sprout</dc:creator>
      <pubDate>Fri, 01 Aug 2025 22:12:31 +0000</pubDate>
      <link>https://dev.to/bsprout431/best-lightweight-docusaurus-alternative-i-think-its-docmd-a-refreshingly-minimal-docs-47da</link>
      <guid>https://dev.to/bsprout431/best-lightweight-docusaurus-alternative-i-think-its-docmd-a-refreshingly-minimal-docs-47da</guid>
      <description>&lt;p&gt;I’ve tried just about every documentation generator out there. Some are great but heavy. Others are flexible but overwhelming.&lt;/p&gt;

&lt;p&gt;Then I stumbled on &lt;a href="https://docmd.mgks.dev" rel="noopener noreferrer"&gt;docmd&lt;/a&gt;, and it was like a breath of fresh air.&lt;/p&gt;

&lt;p&gt;It’s a tiny, Node.js-based static documentation generator that feels like the spiritual successor to the early days of Jekyll — but with modern DX.&lt;/p&gt;

&lt;p&gt;And I cannot believe I didn’t find it earlier.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚡ Why it’s different (and better)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install -g @mgks/docmd
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd docs
docmd init
docmd build
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Zero setup:&lt;/strong&gt; Just run a single command to scaffold&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Install dependencies:&lt;/strong&gt; Fast and light&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Simple config:&lt;/strong&gt; One file: &lt;code&gt;config.js&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Markdown-first:&lt;/strong&gt; No weird templating. Just &lt;code&gt;.md&lt;/code&gt; files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom JS/CSS supported:&lt;/strong&gt; Without hacks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SEO + Analytics:&lt;/strong&gt; Already handled with built-in plugins&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I created a full-fledged docs site in 2 minutes.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ What impressed me most
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The sidebar is just a JS array&lt;/li&gt;
&lt;li&gt;The output is super clean (and mobile friendly)&lt;/li&gt;
&lt;li&gt;It’s actually static, with no runtime JS bloat&lt;/li&gt;
&lt;li&gt;You can inject your own code — I added a copy code button in 2 minutes&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  😅 The missing bits (for me atleast)
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;It’s not flawless — but here’s what I think it needs:&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;🔍 Search&lt;/strong&gt; — nothing fancy, just &lt;code&gt;Fuse.js&lt;/code&gt; or client-side index&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🌙 Dark mode polish&lt;/strong&gt; — code blocks don’t always follow the theme&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;📋 Copy code button&lt;/strong&gt; — should be built-in, but you can add it via &lt;code&gt;customJs
&lt;/code&gt;
These are totally reasonable gaps — and it’s so lightweight that I don’t mind extending it myself.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  🛠 Features I want (and might contribute)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;If you’re a contributor or forker, here are ideas worth adding:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Copy Code:&lt;/strong&gt; true toggle in &lt;code&gt;config&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search:&lt;/strong&gt; true with options for &lt;code&gt;Fuse.js&lt;/code&gt;or Lunr&lt;/li&gt;
&lt;li&gt;Better or improved theme switching for dark mode&lt;/li&gt;
&lt;li&gt;Plugin auto-loading from a &lt;code&gt;/plugins&lt;/code&gt; folder, might eradicate manually overlooking config more often&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These would still keep docmd tiny — no React, no SPA overhead — but improve UX significantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧭 Who it’s perfect for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Indie devs building tools and want fast docs&lt;/li&gt;
&lt;li&gt;Internal documentation for startups&lt;/li&gt;
&lt;li&gt;CLI/API reference sites&lt;/li&gt;
&lt;li&gt;Anyone who hates maintaining Webpack-based doc setups&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🌍 Help it grow
&lt;/h2&gt;

&lt;p&gt;I honestly think more devs should know about &lt;strong&gt;docmd&lt;/strong&gt;. It deserves way more visibility. It’s open-source, no lock-in, and solves the 80% use case beautifully.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If you're frustrated with heavy doc stacks — do yourself a favor and try it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;📎 Some Useful Links:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/mgks/docmd" rel="noopener noreferrer"&gt;https://github.com/mgks/docmd&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Documentation:&lt;/strong&gt; &lt;a href="https://docmd.mgks.dev" rel="noopener noreferrer"&gt;https://docmd.mgks.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NPM:&lt;/strong&gt; &lt;a href="https://www.npmjs.com/package/@mgks/docmd" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/@mgks/docmd&lt;/a&gt;&lt;/p&gt;

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