<?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: nexibase</title>
    <description>The latest articles on DEV Community by nexibase (@nexibase).</description>
    <link>https://dev.to/nexibase</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%2F3867313%2Fa57fd68b-4a23-4342-933c-0c14ebbf018e.png</url>
      <title>DEV Community: nexibase</title>
      <link>https://dev.to/nexibase</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nexibase"/>
    <language>en</language>
    <item>
      <title>I built an open-source CMS with Next.js 16 — Here's what I learned</title>
      <dc:creator>nexibase</dc:creator>
      <pubDate>Wed, 08 Apr 2026 08:30:27 +0000</pubDate>
      <link>https://dev.to/nexibase/i-built-an-open-source-cms-with-nextjs-16-heres-what-i-learned-c1m</link>
      <guid>https://dev.to/nexibase/i-built-an-open-source-cms-with-nextjs-16-heres-what-i-learned-c1m</guid>
      <description>&lt;p&gt;For the past few months, I've been building &lt;strong&gt;NexiBase&lt;/strong&gt; — an open-source, plugin-based community platform powered by Next.js 16, React 19, Prisma (MySQL), and Tailwind CSS 4.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why another CMS?
&lt;/h2&gt;

&lt;p&gt;I spent 20+ years working with &lt;strong&gt;Gnuboard5&lt;/strong&gt;, Korea's most popular PHP CMS. It's battle-tested and extensible — but stuck in the PHP era. I wanted to bring that same plugin-driven philosophy to a modern stack.&lt;/p&gt;

&lt;p&gt;The result is NexiBase: a full-stack CMS where you can build community sites, shopping malls, corporate pages, and more — all from a single codebase.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-board system&lt;/strong&gt; — Create unlimited boards with comments, threaded replies, reactions, and secret posts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Plugin system&lt;/strong&gt; — Drop a folder into &lt;code&gt;/plugins&lt;/code&gt;, it's auto-detected. Enable/disable from admin&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Theme system&lt;/strong&gt; — CSS variables, custom themes via &lt;code&gt;custom.css&lt;/code&gt;, dark/light mode toggle&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Widget system&lt;/strong&gt; — Drag &amp;amp; drop homepage layout from the admin dashboard&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rich text editor&lt;/strong&gt; — Tiptap-based with image upload, links, and formatting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Admin dashboard&lt;/strong&gt; — Manage members, boards, plugins, menus, content pages, and widgets&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OAuth&lt;/strong&gt; — Google, Kakao, Naver + email verification&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Image processing&lt;/strong&gt; — Sharp-based auto resize and WebP conversion&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Technology&lt;/th&gt;
&lt;th&gt;Version&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Next.js&lt;/td&gt;
&lt;td&gt;16&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;React&lt;/td&gt;
&lt;td&gt;19&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prisma&lt;/td&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tailwind CSS&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UI Components&lt;/td&gt;
&lt;td&gt;shadcn/ui&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Editor&lt;/td&gt;
&lt;td&gt;Tiptap&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What makes it different?
&lt;/h2&gt;

&lt;p&gt;Most Next.js CMS solutions are either headless (content-only) or tightly coupled. NexiBase is a &lt;strong&gt;full-stack, self-hosted platform&lt;/strong&gt; with a real plugin architecture:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Plugins are folders&lt;/strong&gt; — Each plugin has its own Prisma schema, API routes, admin pages, and widgets. Drop it in, run a scan, done.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Themes are CSS&lt;/strong&gt; — No build step needed. Override CSS variables or create a full theme folder.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Widgets are composable&lt;/strong&gt; — Admin can arrange homepage widgets in zones (top, center, bottom) with drag &amp;amp; drop.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Try it out
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Live demo&lt;/strong&gt;: &lt;a href="https://nexibase.com" rel="noopener noreferrer"&gt;nexibase.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/nexibase/nexibase" rel="noopener noreferrer"&gt;github.com/nexibase/nexibase&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;I'm actively working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More plugins (e-commerce, analytics)&lt;/li&gt;
&lt;li&gt;Better documentation&lt;/li&gt;
&lt;li&gt;i18n support&lt;/li&gt;
&lt;li&gt;Performance optimizations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;I'd love your feedback!&lt;/strong&gt; What features would you want in a Next.js CMS? What's missing from existing solutions?&lt;/p&gt;

&lt;p&gt;Feel free to star the repo, open issues, or just say hi. Every bit of feedback helps. 🙏&lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
  </channel>
</rss>
