📦 Monorepo Strategy Vocabulary
0 / 5 completed
1 / 5
An engineering team is evaluating monorepo vs. polyrepo for their new platform.
What is the PRIMARY benefit of a monorepo for a large engineering organisation?
Monorepo vs. polyrepo — the key architectural trade-off:
| Monorepo benefit | Explanation |
|---|---|
| Atomic cross-project changes | 1 PR updates API + all consumers simultaneously |
| Single source of truth | All code at the same version |
| Shared tooling | Consistent linting, testing, CI config |
Trade-offs: CI must scale (affected commands), Git performance at large scale, access control complexity. Key vocabulary: atomic cross-project change, single source of truth, affected build, monorepo vs. polyrepo trade-off.