<?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: Fabunmi George Goodluck</title>
    <description>The latest articles on Forem by Fabunmi George Goodluck (@georgegoodluck).</description>
    <link>https://forem.com/georgegoodluck</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%2F822247%2F93e50edc-7f93-4531-91e3-31e4a9a0f572.png</url>
      <title>Forem: Fabunmi George Goodluck</title>
      <link>https://forem.com/georgegoodluck</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/georgegoodluck"/>
    <language>en</language>
    <item>
      <title>Stop Overengineering: How to Build Scalable Apps Without Killing Your Momentum</title>
      <dc:creator>Fabunmi George Goodluck</dc:creator>
      <pubDate>Sun, 19 Apr 2026 18:00:11 +0000</pubDate>
      <link>https://forem.com/georgegoodluck/stop-overengineering-how-to-build-scalable-apps-without-killing-your-momentum-l15</link>
      <guid>https://forem.com/georgegoodluck/stop-overengineering-how-to-build-scalable-apps-without-killing-your-momentum-l15</guid>
      <description>&lt;p&gt;Okay so here's something I see &lt;em&gt;constantly&lt;/em&gt; with devs who've been coding for a year or two.&lt;/p&gt;

&lt;p&gt;You get past the "how do I even make this work" phase. And suddenly you're not just building stuff anymore. You're &lt;em&gt;architecting&lt;/em&gt;. &lt;/p&gt;

&lt;p&gt;Like, every new feature turns into this whole thing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Where does this &lt;em&gt;actually&lt;/em&gt; belong in the folder structure?"&lt;/li&gt;
&lt;li&gt;"Better make this component reusable... just in case"&lt;/li&gt;
&lt;li&gt;"What if we need to swap this out later?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Next thing you know, it's Tuesday afternoon and you've written zero working code. You've just moved files around and argued with yourself about abstractions.&lt;/p&gt;

&lt;p&gt;Ugh.&lt;/p&gt;

&lt;h2&gt;
  
  
  The real problem (it's not just premature optimization)
&lt;/h2&gt;

&lt;p&gt;We all know premature optimization is bad. But there's a sneakier version:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Premature architecture.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You're literally designing solutions for problems that don't exist yet. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Adding layers "for scalability" when you have 12 users&lt;/li&gt;
&lt;li&gt;Building reusable components that get used once&lt;/li&gt;
&lt;li&gt;Overthinking state management for a todo list&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And the cost? Slower dev, harder debugging, and you're constantly second-guessing yourself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Here's the thing nobody tells you
&lt;/h2&gt;

&lt;p&gt;Scalable systems aren't &lt;em&gt;designed&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;They &lt;em&gt;evolve&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Go look at any successful product's early code. I guarantee it's messy. Probably embarrassing. But it shipped. Then they refactored when the pain got real.&lt;/p&gt;

&lt;p&gt;You can't predict what's gonna break. You can only get good at responding fast when it does.&lt;/p&gt;

&lt;h2&gt;
  
  
  Just do this instead
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Make it work.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Hardcode stuff. Skip abstractions. Just ship the feature.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Wait for it to hurt.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
When you're like "omg changing this is painful" or "this is slow as hell" — &lt;em&gt;that's&lt;/em&gt; your signal. Not before.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Then refactor.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Now you actually know what needs to be reusable. What's actually slow. What's actually painful.&lt;/p&gt;

&lt;p&gt;Now architecture makes sense.&lt;/p&gt;
&lt;h2&gt;
  
  
  Real example (React folders)
&lt;/h2&gt;

&lt;p&gt;Start stupid simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;src/
  components/
  pages/
  utils/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. Boring. Works fine.&lt;/p&gt;

&lt;p&gt;Later, when you're drowning in files:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;src/
  features/
    auth/
      components/
      hooks/
      api/
    dashboard/
      components/
      services/
  shared/
    ui/
    hooks/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;See the difference? You &lt;em&gt;earned&lt;/em&gt; that structure. You didn't start there.&lt;/p&gt;

&lt;h2&gt;
  
  
  Red flags you're overdoing it
&lt;/h2&gt;

&lt;p&gt;If you catch yourself saying:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"We might need this later" (you won't)&lt;/li&gt;
&lt;li&gt;"Let's make this super reusable" (it's used once)&lt;/li&gt;
&lt;li&gt;"This should support multiple cases" (there's one case)&lt;/li&gt;
&lt;li&gt;Or you're organizing more than you're coding&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Stop. Take a breath. Ship something.&lt;/p&gt;

&lt;h2&gt;
  
  
  Some rules that actually work
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Build for today. Not for "what if we get 10 million users"&lt;/li&gt;
&lt;li&gt;Duplicate code twice before abstracting it the third time&lt;/li&gt;
&lt;li&gt;Don't add libraries you barely understand&lt;/li&gt;
&lt;li&gt;Only optimize when you can measure the problem&lt;/li&gt;
&lt;li&gt;Ship faster than you refactor&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  If you're building something right now...
&lt;/h2&gt;

&lt;p&gt;You don't need microservices. You don't need a fancy state machine. You don't need enterprise architecture.&lt;/p&gt;

&lt;p&gt;You need working features. You need feedback. You need to move fast.&lt;/p&gt;

&lt;p&gt;Everything else is just procrastination wearing a fancy hat.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;The best devs aren't the ones who design perfect systems. They're the ones who know when to just shut up and build the damn thing.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>softwareengineering</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How I structure Scalable React Applications</title>
      <dc:creator>Fabunmi George Goodluck</dc:creator>
      <pubDate>Fri, 03 Apr 2026 22:38:35 +0000</pubDate>
      <link>https://forem.com/georgegoodluck/how-i-structure-scalable-react-applications-7a1</link>
      <guid>https://forem.com/georgegoodluck/how-i-structure-scalable-react-applications-7a1</guid>
      <description>&lt;p&gt;&lt;strong&gt;How I Structure Scalable React Applications&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most React apps start clean… and slowly turn into chaos.&lt;/p&gt;

&lt;p&gt;At first, everything makes sense. Then the app grows. Suddenly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Files are everywhere&lt;/li&gt;
&lt;li&gt;Logic is hard to track&lt;/li&gt;
&lt;li&gt;Reusability becomes messy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I ran into this problem myself, and the fix was simple: &lt;strong&gt;stop organizing by file type — start organizing by feature.&lt;/strong&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  1. The Feature-First Folder Structure
&lt;/h3&gt;

&lt;p&gt;Instead of grouping files like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;/components&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/styles&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/hooks&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Group them by &lt;em&gt;what they actually do&lt;/em&gt; in your app.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;src/
├── assets/          # Images, fonts, icons
├── components/      # Shared UI (Button, Input, Modal)
├── features/        # Core app logic
│   ├── auth/        # Login, signup, auth logic
│   ├── dashboard/   # Charts, stats
│   └── profile/     # User settings
├── hooks/           # Global reusable hooks
├── services/        # API layer
├── store/           # State management
└── utils/           # Helpers
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This keeps everything related to a feature in one place — which makes scaling way easier.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Inside a Feature Folder
&lt;/h3&gt;

&lt;p&gt;Each feature should be self-contained.&lt;/p&gt;

&lt;p&gt;Example: &lt;code&gt;features/auth/&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;auth/
├── components/   # UI specific to auth
├── api/          # API calls
├── hooks/        # useAuth, etc.
└── index.ts      # Public API
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That &lt;code&gt;index.ts&lt;/code&gt; is important. It controls what the rest of your app can access.&lt;/p&gt;

&lt;p&gt;So instead of:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;LoginForm&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@/features/auth/components/LoginForm&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You do:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;LoginForm&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@/features/auth&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Cleaner. Easier to refactor later.&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Component Hierarchy (Keep It Clean)
&lt;/h3&gt;

&lt;p&gt;There are two types of components:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Shared Components&lt;/strong&gt;&lt;br&gt;
Located in &lt;code&gt;/components&lt;/code&gt;&lt;br&gt;
Reusable and unaware of business logic&lt;br&gt;
Examples: Button, Card, Modal&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Feature Components&lt;/strong&gt;&lt;br&gt;
Located inside &lt;code&gt;/features/[name]/components&lt;/code&gt;&lt;br&gt;
Built for a specific purpose&lt;br&gt;
Examples: LoginForm, UserProfileHeader&lt;/p&gt;

&lt;p&gt;This separation prevents your “shared” components from becoming messy and overcomplicated.&lt;/p&gt;




&lt;h3&gt;
  
  
  When This Approach Makes Sense
&lt;/h3&gt;

&lt;p&gt;If your app is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Growing fast&lt;/li&gt;
&lt;li&gt;Has multiple features&lt;/li&gt;
&lt;li&gt;Getting harder to navigate&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This structure will save you a lot of pain.&lt;/p&gt;

&lt;p&gt;If you’re building something small?&lt;br&gt;
Don’t over-engineer it.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Final Thought&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Good structure doesn’t matter on day one.&lt;/p&gt;

&lt;p&gt;But a few weeks in… it matters a lot.&lt;/p&gt;

&lt;p&gt;Organize by feature early — your future self will thank you.&lt;/p&gt;

</description>
      <category>react</category>
      <category>webdev</category>
      <category>programming</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Covid-19 Tracker App</title>
      <dc:creator>Fabunmi George Goodluck</dc:creator>
      <pubDate>Sat, 26 Feb 2022 18:20:16 +0000</pubDate>
      <link>https://forem.com/georgegoodluck/covid-19-tracker-app-38hc</link>
      <guid>https://forem.com/georgegoodluck/covid-19-tracker-app-38hc</guid>
      <description></description>
    </item>
  </channel>
</rss>
