DEV Community

jaeyow for AWS Community Builders

Posted on • Updated on • Originally published at fullstackdeveloper.tips

Micro-frontends building blocks: Monorepos

A monorepo, what's that?

A while back I was finishing work with an employer and was due to join my new team. I remember feeling excited when I heard that the new project will be using monorepos. I did not have a clue what monorepos were, only I've heard that that's what the big boys were using.

What is a Monorepo, image from voiceflow.com

What is a Monorepo, image from Voiceflow.com

Definitely not mainstream (still not these days) they were supposed to promote better collaboration, and give the teams using it full autonomy and are perfect for when you're anticipating the project to scale.

Yeah, OK that sounds good, however, I just didn't understand how just by co-locating all your sub-projects into a single repository will magically give you all the advantages mentioned.

Monorepo is code co-location

Yes, Monorepo is code co-location, but there is more to it than that.

Just putting several projects in one repo does not make it a monorepo. In fact, if that's the only thing that we do, we are creating a monolith. A good monorepo enables you to create distinct and separate projects, that have well defined relationships and dependencies.

This is a very common misconception in software engineering, where as far as I can remember, we have been conditioned to put everything in its own repository to encourage team autonomy. But it also promotes isolation that creates silos within the team and that essentially kills collaboration.

Monorepo promotes dependencies and relationships

Monorepos excel with dependency management now that all the code is co-located in one spot. Because a monorepo can contain many disparate projects that may have deep and non-trivial relationships, monorepo tooling are optimized for build speed.

It can cache previously performed operations, so that running them again will skip the work that has already been done to produce substantial time savings.

The node_modules folder needs no introduction, its that deep dark place where all project dependencies end up in. Current monorepo tooling can save a substantial amount of disk space by hoisting common dependencies to the top level, so that all lower level dependencies are satisfied from there instead.

Monorepo is one version for all

With monorepos, version configuration is simple, there is only one version, and this essentially is a snapshot of the system removing the need to manage the multiple different versions of your application and its dependencies.

Monorepo is atomic

Imagine all your system in one repo. Web frontend, IOS and Android mobile app, shared libraries, APIs, Lambdas, IaC, scripts, etc. The ability to be able to work on a task and do everything in the same commit, that is possible with monorepos.

Monorepo is intelligent tooling

Many of the monorepo benefits are not possible without the advancements in current monorepo tools.

Tools like Lerna, Bazel, Nx, Rush, Turborepo, to name a few. Lerna is probably the grand daddy of all monorepo tools. CRA, Babel, Jest are a few projects that use it. Bazel has been refined and tested for years at Google to build heavy-duty, mission-critical infrastructure, services, and applications. Turborepo is the monorepo for Vercel, the leading platform for frontend frameworks. These tools can help keep your monorepo workspaces fast, understandable and manageable.

Monorepo.tools is an excellent resource detailing the many intelligent features of these tools that help manage your monorepo projects.

Monorepo is collaboration

Because all the team's code (maybe even the whole organization's) exist in the same repository, monorepos encourage code sharing, transparency and cross team collaboration. This does not come for free, though. There will be more noise, but with good management and the help of efficient tooling, this is all possible.

Monorepo is people

Software engineering is as much technical as it is people. Yes monorepo is a technical strategy to structure your project and workspace.

However, it is actually much more than that. Because it encourages people to collaborate effectively and work efficiently together, it represents a change that probably many software teams need today.

Conclusion

Moving to monorepos represents a paradigm shift in software engineering. There are reasons why many organizations have made the shift. There are obviously many gains with using monorepos that made these organizations move. But because it represents a fundamental change and shift in thinking, there are also many detractors.

Because on the surface what may look like a simple change in project and workspace structure, is actually an organizational change, and that can be hard in any industry.

Resources

Originally published at Fullstack Developer Tips

Top comments (4)

Collapse
 
mmuller88 profile image
Martin Muller

Super post. I found the ADR interesting regardin monorepo github.com/joelparkerhenderson/arc...

Collapse
 
jaeyow profile image
jaeyow

Thanks Martin. will check it out!

Collapse
 
rstacruz profile image
Rico Sta. Cruz

"Because is encourages people to collaborate effectively and work efficiently together" - this is a pretty interesting POV. I agree, I often see monorepo adoption more about the people and the process :)

Collapse
 
pena profile image
Fernando Pena

Great post! Thanks for sharing.