Monorepos. Let’s talk about it.

Divjot Singh
Swiggy Bytes — Tech Blog
6 min readSep 17, 2019

--

Beautiful illustrations credits: Undraw

Recall the days when you were just introduced to git or a similar type of version control system. I’m guessing you must have faced some friction initially, how it breaks your flow, how you just can’t merge to master without rebasing/merging changes in first.

Despite that, you might agree today that it’s actually very helpful in collaborating with the team, and those pain points were necessary to get here.

Monorepos are somewhat similar.

While git was solving problems around managing single codebase with multiple team members or just better versioning, Monorepo kind of does the same but for multiple projects/codebases.

The what.

Is Monorepo that cool font I see on Twitter?

Beautiful illustrations credits: Undraw

Before diving into the topic, let’s first understand what Monorepo truly means. This is what Wikipedia has to say:

In revision control systems, a Monorepo is a software development strategy where code for many projects are stored in the same repository.

In other words, your ‘Work’ folder is close to what a Monorepo would look like. It would have packages that deal with server, web app, native app, documentation, etc.

This is different from a ‘monolith’ where all your application logic is
centralized to one entry point as opposed to distributed services (microservices).

While code for various services would sit in a single repository, it doesn’t mean it would be deployed as a single entity, just like your ‘Work’ folder. Individual projects have separate life-cycles.

The why.

So, do I just git add my entire ‘Work’ folder?

“Why would you want to do this? Whatever happened to separation of concern?”

There are several arguments both in favour and against Monorepos. And I don’t mean “Oh Google uses it” kind of arguments. This blog will give a sneak-peek into our problems and Monorepo’s solutions to them.

Regardless, I recommend that you identify the problems your codebase is facing, and see if Monorepo is truly the answer to those.

The story.

Before moving to Monorepo, we as a team worked on 3 codebases at the same time;

  • dweb (Desktop website of Swiggy)
  • mweb (Mobile website of Swiggy)
  • service (API proxy NodeJS middleware, used by dweb and mweb)

When I say work, I mean writing features, updating build pipeline, reviewing code and fixing bugs.

As the codebases grew, we recognized some patterns:

Beautiful illustrations credits: Undraw
  • Features written on mweb, while dissimilar enough to not to be dragged and dropped to dweb, held enough similarities to be broken into reusable parts.
  • Fixes that go on mweb are also needed on dweb.
  • Code reviewers often ended up reviewing the same code (between mweb and dweb) in a slightly different context.
  • Code review changes on dweb are also relevant to mweb
  • Changes to contracts of service, a common dependency, are also needed to be individually coded, tested, and reviewed.
  • Updating dependencies like React/Webpack/Babel becomes cumbersome between the two codebases.
  • Conventions are difficult to enforce between the three repositories. One has an older version of ESLint, one hasn’t been updated when new lint rules were added, one is still using old test runner.
  • Attempts to make a new repository to keep common code failed due to the amount of setup and code management. Imagine working with multiple team members on multiple repositories with multiple Pull Requests.

As you can see, while the projects are very different (check out swiggy.com on your desktop and mobile to realize that), they still have quite a lot of common code interactions.

Bike-shedding: Have you tried Swiggy website on your desktop or mobile browser? We would love to hear your feedback!

The how.

https://lerna.js.org/

Depending on your ecosystem, there will be different tools to help you with maintaining a Monorepo. You can obviously go vanilla and just use different folders per project. We use Lerna for maintaining our JavaScript codebase.

Thanks to its community, there’s a lot of documentation and help for Lerna related queries.

You may use above scripts to import existing repositories to a lerna based monorepo.

Running scripts from the root has been made simpler using these handy npm scripts.

These scripts allow for convenient way to invoke package scripts from root folder

Since our packages are hosted in internal npm registry, we inject a .npmrc in our Jenkins build the pipeline to avoid committing the authToken.

A script to find all scoped dependencies of a project

One interesting thing about Lerna is that it doesn’t want private packages to be part of the package-lock.json. This means we can’t just simply use npm ci. We use this bash script to get past that.

The happy part.

Within a few months of making this change, we tippled the number of packages in our Monorepo. We also saw much more work done on the linting front, leading to a more consistent codebase.

The linter is common to entire Monorepo, and each new rule affects all the packages.

  • config (webpack config as a package, reused by mweb and dweb)
  • ui (a package to create common patterns of design to be used in mobile and desktop, thus enabling us to work on creating a Swiggy’s design system)
  • payments (a package of Swiggy’s payments page, used by multiple tenants)
  • reviews (a package of Swiggy’s Ratings and Reviews page and components, used by mweb and dweb)
  • helpers (a package of common reusable logic, something like lodash)
  • daily (swiggydaily.com, reuses 2 components from mweb)
  • cache (a caching module used by mweb and dweb)
  • restaurant-url (a restaurant slug generator, multiple tenants)
Beautiful illustrations credits: Undraw

I think that giving the option to easily create a new package incentivizes developers to think in more modular terms. They don’t think in the context of an app but rather in a more general way.

It also discourages them from touching modules that are used by multiple tenants, and use semantic versioning appropriately.

The benefits we are seeing out of this are just amazing:

  • Writing the same fix for dweb and mweb is faster, as it’s just one commit.
  • No more npm link mess.
  • Reviewing a fix for both dweb and mweb is faster, as it’s just one Pull Request on one repository by one team member.
  • Reusing and updating build pipeline is much more seamless.
  • Updating major dependencies/lint rules is super easy.
  • The collocation of code encourages developers to copy-paste less and reuse more.
  • Writing reusable modules becomes easier, leading to better software engineering.

The sad part.

But it ain’t all fun. Our PR section is a bit noisier. It’s not like we’re somehow writing more code, but that changes to any package comes to spotlight and doesn’t get silently updated.

  • Too many packages lead to longer bootstrap times.
  • Leveraging the benefits of Monorepo takes time.
  • The code navigation is slightly slower. Developers are now opening individual packages to work around that.

Update: There’s one more point I would like to touch upon. Our approach currently colocates applications with libraries. ‘mweb’ is a private package in the sense it isn’t published to our npm registry, however ‘ui’ is a public package that can be consumed by mulitple tenants. This leads to heterogeneity in the monorepo. We are okay with this mix as

  • it reduces friction of local development (no npm links).
  • colocation leads to easy refactors and library creations.
  • code review is simpler when it’s all one repository.

The verdict.

So far we’re seeing Monorepo architecture a better fit for our growing codebase and team. It also impacts the way we design new libraries and components, often promoting clearer separations of concerns.

Beautiful illustrations credits: Undraw

Should you use monorepo? Like all things, it depends on TM! I hope this blog gave enough insight to you as to why we started using a Monorepo, and how it’s benefiting us.

DISCLAIMER: We don’t advocate for any of the tools, libraries, coding practices or software development philosophies mentioned here. You are welcome to read, learn, accept, reject and critique however you see fit.

--

--