From Monorepo To Standalone: Why Separate Repos Work Better For Me
I used to love NX, but it didn't suit me. Most of my projects are single Angular apps, so I prefer separate repos for clarity and simplicity. NX is great for sharing code between projects, but not for single apps.
Hello! I used to like NX a lot. It was a monorepo for all my projects—different brands and clients in one place. It worked well, but it didn’t suit me. Most of my projects are single Angular apps. So, I stopped using one big NX repo and made separate projects instead. Here’s why I prefer it. Monorepo Problem NX was good for sharing libraries and components between projects. I put everything in it—a dashboard for one client, a storefront for another. I wanted to reuse code. But it was hard to keep everything compatible and updated. For projects that don’t change, this was too much wor...