DEV Community

Cover image for JavaScript Monorepo Implemented by Lerna with Yarn Workspaces and Git Submodules
liyachun
liyachun

Posted on • Updated on

JavaScript Monorepo Implemented by Lerna with Yarn Workspaces and Git Submodules

This is me: 🐣.

And my thoughts while implementing a JavaScript monorepo using lerna and yarn workspaces, as well as git submodules.

Disclaimers

  1. The term monorepo seems to be controversial when it comes to project structuring, some may prefer multi-package (lerna itself once was A tool for managing javascript monorepos, it's now A tool for managing JavaScript projects with multiple packages) .
  2. Not a step by step guide on tools, links to well maintained official docs will be provided.
  3. To record (not to debate) my own thoughts and details-of-implementation on 'monorepo'. Corrections and guidances are welcome!

Monorepo What and Why

TL; DR

Back to those early days in my web projects as a noob, typically I would create repositories like one named frontend, another one named server, separately maintained and git-versioned. In the real world two simple sub-repositories may not cover many of those complicated scenarios. Think about those lovely UI components you would like to pet and spread, and those clever utils/middlewares you want to extract and share.

frontend # a standalone repo
β”œβ”€β”€ scripts
β”œβ”€β”€ components
β”‚   β”œβ”€β”€ some-lovely-ui
β”‚   └── ...
β”œβ”€β”€ index.html
└── ...

server # a standalone repo
β”œβ”€β”€ utils
β”‚   β”œβ”€β”€ some-mighty-util
β”‚   └── ...
β”œβ”€β”€ middlewares
β”‚   β”œβ”€β”€ some-clever-middleware
β”‚   └── ...
β”œβ”€β”€ router.js
β”œβ”€β”€ app.js
β”œβ”€β”€ package.json
└── ...
Enter fullscreen mode Exit fullscreen mode

The noob structure

Yes, we must protect our innovative ideas, by creating a few more standalone repositories, which should turn the whole project into a booming repo-society.

webapp # standalone
β”œβ”€β”€ node_modules
β”œβ”€β”€ package.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .git
β”œβ”€β”€ dotenvs
β”œβ”€β”€ some-shell-script
β”œβ”€β”€ some-lint-config
β”œβ”€β”€ some-lang-config
β”œβ”€β”€ some-ci-config
β”œβ”€β”€ some-bundler-config
└── ...

server # standalone as it was
β”œβ”€β”€ node_modules
β”œβ”€β”€ package.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .git
β”œβ”€β”€ dotenvs
β”œβ”€β”€ same-old-confs
└── ...

whateverapp # say, an electron-app
β”œβ”€β”€ same-old-js # a standalone javascript-domain repo, again
└── ...

some-lovely-ui # need to be independently bootstraped and managed
β”œβ”€β”€ same-old-setup
└── ...

some-mighty-util # share almost identical structure
β”œβ”€β”€ same-old-structure
└── ...

some-clever-middleware # inherit absolute pain
β”œβ”€β”€ same-old-pain
└── ...
Enter fullscreen mode Exit fullscreen mode

The real world?

With the help of the link command provided by yarn (-link) or npm (-link), you can easily try development features across projects and packages on the fly. Say, if you are developing Project A and Package B simultaneously but as separate repos, and want use B as a dependency of A. Perform yarn link under Package B and yarn link B under Project A, you will find a symlink folder like path/to/A/node_modules/B(same result when you perform a yarn add) which links to your still-active local Package B. Details beyond scope, dig for yourself.

So far so good, until then you quickly find yourself annoyed by what everybody tends to get rid of: Repository Bootstrapping, during which, if you care about maintainability and consistency, almost identical configurations have to be set for version control, dependency control, bundling, linting, CI, etc. meanwhile almost identical solutions have to be make to avoid madness, one of the baddest villains for example: The 'node_modules' πŸ•³οΈ.

The Silver Lining

While dirty jobs must not be avoided, there is still a silver lining hereβ€”dirty jobs done once and for all, at least to get rid of the duplicated painfulness.

The approach is simple. Step zero, since all the repositories we've built are meant to serve the same big blueprint, joining them into one single repository sounds just modern and intuitive.

the [project] root
β”œβ”€β”€ apps
β”‚   β”œβ”€β”€ webapp
β”‚   β”œβ”€β”€ server
β”‚   β”œβ”€β”€ some-lovely-ui
β”‚   β”œβ”€β”€ some-mighty-util
β”‚   └── ...
└── ...
Enter fullscreen mode Exit fullscreen mode

The what?

Such approach, looks like a history rewind. As I've not-very-deeply learned, many ancient projects in corporations used to be structured in a monolithic way, but gradually suffer from maintenance and collaboration problems. Wait, still?

What is the confusion? What is our goal by putting things together? Our wish:

  • Being saved from redundant jobs.
  • Promote code consistency
  • Version control made easy
  • Best practices possible for all sub projects.

MANAGEABILITY, I think.

Manageability Up

The [project] root
β”œβ”€β”€ apps
β”‚   β”œβ”€β”€ webapp
β”‚   β”‚   β”œβ”€β”€ package.json # sub-project manifests and deps
β”‚   β”‚   β”œβ”€β”€ lint-conifgs # sub-project-wide lint, can extend or override global confs
β”‚   β”‚   β”œβ”€β”€ lang-configs # sub-project-wide, can extend or override global confs
β”‚   β”‚   β”œβ”€β”€ bundler-configs # sub-project-wide
β”‚   β”‚   β”œβ”€β”€ README.md
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ server
β”‚   β”‚   β”œβ”€β”€ package.json # sub-project manifests and deps
β”‚   β”‚   β”œβ”€β”€ sub-project-level-confs
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ some-lovely-ui
β”‚   β”‚   β”œβ”€β”€ sub-project-level-stuff
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ some-clever-middleware
β”‚   β”‚   └── ...
β”‚   └── ...
β”œβ”€β”€ package.json # global manifests, deps, resolutions, root-only deps (husky for instance)
β”œβ”€β”€ .gitignore # git once for all
β”œβ”€β”€ .git # git once for all
β”œβ”€β”€ dotenvs # dotenvs for all
β”œβ”€β”€ shell-scripts # maintainance for all
β”œβ”€β”€ lint-configs # lint for all
β”œβ”€β”€ lang-configs # helpers for all
β”œβ”€β”€ ci-configs # publish made handy
β”œβ”€β”€ bundler-configs # bundler for all
└── ...
Enter fullscreen mode Exit fullscreen mode

The advanced structure

Here we've introduced several familiar faces into the root of the project directory, they are manifests or config files once only dwelled in each sub-project. This made these configs effect project-wide, allowing a baseline to be set and shared among all sub-projects, aka code consistency. A sub project may still hold its private-scope configs to override or extend the global standardβ€”all thanks to the inheritance-like feature in most dev toolchainsβ€”if a variation has to be made, in many cases.

The model must be flexible. Take code linting for instance, to save lives, almost every well maintained framework, both frontend and backend included, has their own boilerplates and cli tools to the rescue, which usually have linting covered. Though many of them use eslint and promote the JavaScript Standard Style, there are ts / js variations, there are still tslint advocates, there are complexity between lint plugins, and for sure there can be strict-or-not conventions in your company. Wise choices have to be made on your own responsibility.

Bravo?

Let's now bravely call our project a monorepo already! By the name we infer (?) that this is basically a project with all its ingredient parts in a single / monophonic repository. Meanwhile the ability of serving a project-wide but extendable development standard is made possible.

Manageability achieved! Now who be the manager?

Sir, We have a problem!

  • The installing process for a JS project is never satisfying. It creates fat and tricky node_modules. Multiple projects in one?

    🍭 Not human-life-saving: I have to cd and perform yarn add per sub-project folder.

    πŸ”‹ Not battery-life-saving: A sub-project's deps are installed under its own directory. To the global scale, heavy loads of duplications are produced and will keep expand.

  • Cleverer ideas and methods needed for handling sub-project versions, and cross-d relations.

Introducing Lerna

In action, I didn't come across like having headaches resolving package dependencies, went search and found a solution. I've heard of lerna in the first place, found it handy while performing semver bumps, and then got to know monorepo goodness.

As described on its website, lerna is a tool for managing JavaScript projects with multiple packages.

A lerna init command creates a new (or updgrade an existing project into a) lerna project, which typically structures like:

root
β”œβ”€β”€ lerna.json
β”œβ”€β”€ package.json
β”œβ”€β”€ node_modules
└── packages
    β”œβ”€β”€ packageA
    β”‚Β Β  β”œβ”€β”€ node_modules
    β”‚Β Β  β”œβ”€β”€ package.json
    β”‚Β Β  └── ...
    β”œβ”€β”€ packageB
    β”‚Β Β  β”œβ”€β”€ node_modules
    β”‚Β Β  β”œβ”€β”€ package.json
    β”‚Β Β  └── ...
    └── ...
Enter fullscreen mode Exit fullscreen mode

Looks like pretty much a lerna.json file introduced into our previous mono-structure. The file is the config file for your globally npm-installed or yarn-added lerna command line tool, a project-wide lerna should also be automatically added to root/package.json/devDependencies.

A minimal effective lerna config be like:

// [project/root]/lerna.json

{
    "packages": ["packages/*"],
    "version": "independent",
    "npmClient": "yarn" // or npm, pnpm?
    // ...

}
Enter fullscreen mode Exit fullscreen mode

The packages entry is a glob list that matches the locations of sub-projects, for instance, "["clients/*", "services/*", "hero"] should make valid sub-projects (having a valid package.json) directly located under clients and services, as well of the exact hero project which located under the root, recognized as lerna packages.

The version entry, if given a valid semver string, all packages should always share the same version number. "independent" means packages have different versions in parallel.

Useful Commands

  • lerna bootstrap (once, from any location, project wide):

    🍭 Install dependencies for every single package (sub-project only, root dependencies not included), no per directory by-hand installs.

    πŸ”‹ With a --hoist flag, can resolve duplication of common dependencies.

    βš”οΈ Link cross dependencies, same results (see lerna add and lerna link) as performing yarn links per package

  • lerna clean: Remove installs (purge the node_modules folder) from every package (root excepted)

  • lerna version and lerna publish as lerna's selling point:

    lerna version

    lerna publish

    BETTER READ THE DOCS FOR THIS SECTION BY YOURSELF

    You must be smart if you use conventional commits in your repo at the same time, it gives you much more advantages.

Use Conventional Commits

A repo who follows the Conventional Commits has its commit messages structured as follows:

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]
Enter fullscreen mode Exit fullscreen mode

We have husky the git hooks manager, as well as commitizen the commit util. They create interactive prompts as you git commit, simplifying the making of commit messages. Dig it for your self.

Informations provided in a conventional commit message correlate with the Semantic Versioning spec very well. Typically, given that a full semver number can be MAJOR.MINOR.PATCH-PRERELEASE:

  1. As a possible value of the type section, a fix commit should stand for a PATCH semver bump,.
  2. A feat commit stands for a MINOR bump.
  3. The BREAKING CHANGE optional footer stands for a MAJOR bump.

This makes it easier to write automated tools on top of.

Meanwhile with lerna, an illustrational workflow on conventional version bump

  • Current package versions (independently versioned)
  • Make some updates
    • A MAJOR level performance updates on Package A, with perf(package-a)!: bump electron version as the commit message.
    • A MINOR level feature updates on Package B, with a feat(package-b): add folder draggability commit message.
    • A PATCH level fix on Package C, with a fix(package-c/error-interception): fix type defs.
    • No modifications on Package D.
  • Perform lerna version with the --conventional-commits flag, the process and the results
    1. Read current versions from the package.jsons.
    2. Read from git history (and actual code changes), determine what commit was made in what package.
    3. Resolve commit messages, generate corresponding version bumps.
    4. Once get confirmed, will:
      • Modify package.json/versions.
      • Create a git commit as well as new version tags (the message format can be configued in lerna.json).
      • Push to remote.
  • New versions

You should read the docs for prerelease bumps and more capabilities utilizing lerna.

Introducing Yarn Workspaces

Using lerna to handle package installs, though is applicable, is not a very good idea. Especially when you are having root-only dependencies, and when you are using Yarn (the classic version).

This article only focuses on yarn 1.x only. Having introduced the currently-not-very-widely-supported but advanced Plug'n'Play feature, Yarn 2.x has had very significant diverges both conceptually and functionally. It's even incubating its own release-workflow, fyi.

Hoist in Lerna

Hoist in Lerna

says this official blog from yarn, which also introduced yarn workspaces and its relationship with Lerna

With the above said, I don't really remember since which version, to solve duplicated installation problem, Lerna does provide a --hoist flag while it bootstraps.

root
β”œβ”€β”€ package.json # deps: lerna
β”œβ”€β”€ node_modules
β”‚   β”œβ”€β”€ typescript @4.0.0 # HOISTED because of being a common dep
β”‚   β”œβ”€β”€ lodash ^4.17.10 # HOISTED because of being a common dep
β”‚   β”œβ”€β”€ lerna # root only
β”‚   └── ...
β”œβ”€β”€ package A
β”‚   β”œβ”€β”€ package.json # deps: typescript @4.0.0, lodash ^4.17.10
β”‚   β”œβ”€β”€ node_modules
β”‚   β”‚   β”œβ”€β”€ .bin
β”‚   β”‚   β”‚   β”œβ”€β”€ tsc # still got a tsc executable in its own scope
β”‚   β”‚   β”‚   └── ...
β”‚   β”‚   └── ... # typescript and lodash are HOISTED, won't be installed here
β”‚   └── ...
β”œβ”€β”€ package B
β”‚   β”œβ”€β”€ package.json # dpes: typescript @4.0.0, lodash ^4.17.10
β”‚   β”œβ”€β”€ node_modules
β”‚   β”‚   β”œβ”€β”€ .bin
β”‚   β”‚   β”‚   β”œβ”€β”€ tsc # still got a tsc executable in its own scope
β”‚   β”‚   β”‚   └── ...
β”‚   β”‚   └── ... # typescript and lodash are HOISTED, won't be installed here
β”‚   └── ...
β”œβ”€β”€ package C
β”‚   β”œβ”€β”€ package.json # dpes: lodash ^4.17.20, wattf @1.0.0
β”‚   β”œβ”€β”€ node_modules
β”‚   β”‚   β”œβ”€β”€ .bin
β”‚   β”‚   β”‚   β”œβ”€β”€ wtfdotsh # got an executable from wattf
β”‚   β”‚   β”‚   └── ...
β”‚   β”‚   β”œβ”€β”€ lodash ^4.17.20 # only package C asks for this version of lodash
β”‚   β”‚   β”œβ”€β”€ watf @1.0.0 # package C's private treasure
β”‚   β”‚   └── ...
β”‚   └── ...
└── ...
Enter fullscreen mode Exit fullscreen mode

which means that common dependencies around the repo should get recognized and installed only once into the project/root/node_modules, while the binary executable of each (if it has one) should still be accessible per package/dir/node_modules/.bin, as required by package scripts.

However, still, this absolutely very positive feature is only available during lerna bootstrap, while in most common cases we are installing new packages during development, using a package manager.

Plus, Lerna knows the disadvantages with hoisting, and it doesn't have a way to solve it.

So far with Lerna:

πŸ”­ Good for managing "macro"-scopic packages.

πŸ”¬ Bad at resolving microscopic dependencies.

  1. Easy-to-break package symlinks.
  2. None-desirable overhead control.

Nohoist in Yarn

Finally we welcome Yarn Workspaces on stage. And she comes with such a duty:

  1. She has Hoisting as her key feature.
  2. She knows the caveats of hoisting as well, and provides a β€”no-hoist option (very helpful, PLEASE DO READ THIS).

Its even easier to call her number, by modifying your existing repo/root/package.json.

[root]/package.json
{
  "private": true,
    // pretty familliar setup like Lerna
  "workspaces": ["workspace-a", "workspace-b", "services/*"]
}
Enter fullscreen mode Exit fullscreen mode

This turn a repo into workspaces

Now, instead of lerna bootstrap, calling yarn [install/add] anywhere in the repo and anytime during dev, hoisting will be applied (honestly, more time consuming, but tolerable by all means).

What about nohoisting? Sometimes you don't want some package / workspace having some of there deps installed globally even though they share common versions. It's as simple as adding yet another entry with glob patterns.

[root]/package.json
{
  "private": true,
  "workspaces": {
        // this even more like Lerna
        "packages": ["workspace-a", "workspace-b", "services/*"],
        // exceptions here, globs
      "nohoist": ["**/react-native", "**/react-native/**"]
    }
}
Enter fullscreen mode Exit fullscreen mode

DETAILS? AGAIN, PLEASE DO READ THIS FINE BLOG FROM YARN.

Friendship

Its easy to notice similarities in the way Lerna and Yarn manifest a monorepo. In fact the integration of both is encouraged by Yarn and programmatically supported in Lerna.

[root]/lerna.json
{
  "npmClient": "yarn",
  "useWorkspaces": true
    // ...
}
Enter fullscreen mode Exit fullscreen mode

This join hands together

The above useWorkspaces, once set to true, we get Lerna to read package / workspace globs from package.json instead.

Our original goal

  • [x] A manageable monorepo
    • [x] Package / Workspace versioning made easy
    • [x] Low level dependency well controlled

Not an Intruder - Git Submodules

In my actual dev experience, I'd ran into scenarios as follows:

  • I have to pick some package out, cuz I want opensource it.
  • I am not satisfied with some certain dependency, I'd better fork it and constantly modify and use it in action.

A none-perfect solution

With Git Submodules, we can leverage git as an external dependency management tool as well. In a nutshell, it made possible placing a package inside a big repo, while having its private scope git storage. Details of implementation, please read the above links and this github blog.

For a quick peek, see this sample project structure:

root
β”œβ”€β”€ apps
β”‚   β”œβ”€β”€ auth-web # a lerna package / yarn workspace
β”‚   β”œβ”€β”€ electron-app # a lerna package / yarn workspace
β”‚   └── ...
β”œβ”€β”€ nest-services # a lerna package / yarn workspace
β”œβ”€β”€ submodules
β”‚   β”œβ”€β”€ awesome-plugin # MUST NOT be a lerna package / yarn workspace
β”‚   β”‚   β”œβ”€β”€ node_modules # deps manually installed
β”‚   β”‚   β”œβ”€β”€ package.json # nohoist anything
β”‚   β”‚   β”œβ”€β”€ .git # havs its own git history with its own remote origin
β”‚   β”œβ”€β”€ some-framework-adapter # MUST NOT be a lerna package / yarn workspace
β”‚   β”‚   β”œβ”€β”€ .tsconfig.json # private configs
β”‚   β”‚   β”œβ”€β”€ .ci-conf # SHOULD have its own CI config
β”‚   β”‚   β”œβ”€β”€ .eslintrc # MAY break code consistency.
β”‚   β”‚   β”œβ”€β”€ .git
β”‚   β”‚   └── ...
β”‚   └── ...
β”œβ”€β”€ package.json
β”œβ”€β”€ lerna.json
β”œβ”€β”€ .gitmodules # the config for submodules
β”œβ”€β”€ .git # project git history
└── ...
Enter fullscreen mode Exit fullscreen mode

And this config:

# [root]/.gitmodules

[submodule "submodules/awesome-plugin"]
    path = submodules/awesome-plugin
    url = https://github.com/awesome-plugin
[submodule "submodules/some-framework-adapter"]
    path = submodules/some-framework-adapter
    url = https://private.gitlab.com/some-framework-adapter
Enter fullscreen mode Exit fullscreen mode

Caveats:

  1. The implementation is tricky.
  2. Its recommended that a submodule should not be a Lerna package / workspace, meaning we should regard it as a completely standalone project, perform everything respectively.
  3. Can possibly break the code consistency.

USE WITH CAUTION.

Conclusion - your own responsibility

As I've been sticking with the Lerna-Yarn-Workspaces scheme for a while, questionmarks constantly emerge. Here are some notes of mine.

  1. Git commits must be strictly governed, or they could easily end up a mess. For instance, you should always avoid blending changes in various packages into one commit.
  2. Handle dependencies carefully. I've made mistakes while I was dealing with multiple Nestjs projects. Nest with the help of its CLI tool has its own monorepo mode. I radically tried to merge the Nest monorepo into the Lerna-Yarn-Workspaces one. So I moved all nest-ly common deps (say: express, typescript, prettier plugins) to the project root, make every nest workspace a yarn workspace. This ended up with warnings everywhere, breaking the overall ecosystem. Turns out I had to leave nest inside its own playground and find back inner peace.

I've also investigated the Rushstack a bit, another monorepo implementation from Microsoft. It works best with pnpm and has many conceptual differences from Lerna. For me the most significant is it doesn't encourage root package.json, and they have their ideas on husky and pre-commit git hooks. Moreover its configs are somehow complicated, should be suitable for LARGE monorepos, in things like even detailed file permissions, I think.

I still use Lerna and Yarn for my own convenience and simplicity. And now the final question: Should I always PUT EVERYTHING IN, company-wide for example, like what some big firms does; Or should I be cool, do it project by project; or even completely avoid this approach?

The answer? Maintaining monorepos isn't easy, weigh pros and cons on your own responsibility.

References

Monorepos in Git | Atlassian Git Tutorial

Guide to Monorepos for Front-end Code

Monorepos: Please don't!

Git - Submodules

Misconceptions about Monorepos: Monorepo != Monolith

Monorepos in the Wild

From Monolith to Monorepo

Workspaces in Yarn

License Compliance Question Β· Issue #673 Β· microsoft/rushstack

https://www.youtube.com/watch?v=PvabBs_utr8&feature=youtu.be&t=16m24s

[rush] Support Husky for git commit hooks Β· Issue #711 Β· microsoft/rushstack

[rush] Add support for git hooks by nchlswhttkr Β· Pull Request #916 Β· microsoft/rushstack

Top comments (1)

Collapse
 
liyachun profile image
liyachun • Edited

Recently I am considering Nx and Bit.dev, I am starting to agree with Nx's idea on its relationship with Yarn/Lerna as follows:

Lerna/Yarn/PNPM are package managers. When it comes to monorepos, they mainly perform node_modules deduping. So the choice isn't between Nx or Yarn Workspaces. It's between whether you want to have multiple node_modules folders (in this case use Nx with Yarn Workspaces) or not (use Nx without Yarn Workspaces).