DEV Community

Cover image for Creating a scalable Monorepo for Vue - Intro
Dawid Nitka
Dawid Nitka

Posted on

Creating a scalable Monorepo for Vue - Intro

Hello world,

which means that this is my first article — first of many — as I intend to write a series on creating a monorepo structure for Vue.

 

What problem are we trying to solve?

Vue has become quite popular over the years, and more mid-size companies — and even some big names like Nintendo, Adobe, or Gitlab to name a few — are adopting it. Sometimes, they even choose it as the primary Framework for their products. That's why growing codebases containing many Vue packages are becoming common.

Juggling with projects and packages, publishing, updating, and dealing with the consequences of postponing the last step longer than we intended, due to fast-paced workflows - many were already there, or are right now.

This raises the question:

Is there a good alternative and what are the trade-offs?

In this series, I'll try to answer these questions, as well as provide one of the solutions which you can see complete in this template. Feel free to use it as a base to kickstart your project or simply try it out.

If you have any questions, feel free to leave a comment or add a suggestion in the sample repo.

 

Monorepo

There is at least one good alternative on which we will focus as it's definitely a mature and battle-proven one - monorepo.

The simple explanation is that we put everything into one directory. That's it? Well... not exactly. There are many additional possibilities, but let's start with the easy stuff.

 

One repo, but not much more...

In the simplest form, it means that we create one repository with a bunch of sub-directories for our projects and libraries (packages) and that's it. The rest stays as it is: pushing to the origin, publishing with npm or Lerna. Maybe even with semantic-release if you already made some optimization of the process.

Pros:

  • Many projects in one place -> less opened windows
  • Better overview of your team's work

Cons:

  • More branches -> potential chaos in the git tree

 

Add workspace

But what about managing external dependencies and consuming your libraries (packages)?

If you don't want to go to every project and update dependencies manually you should consider so-called workspaces. More about them in the next article in the series. In short, they will allow you to update more, maybe even all dependencies at once, and still keep full control over your projects, when some more granular interference will be required.

Pros:

  • Faster update of dependencies for many projects at once
  • Less juggling with versions

Cons:

  • Requires updating more projects at once if they are tied to the same dependency. They can still be split but it's somehow contrary to the goal

 

Add direct connection of dependencies

The workspaces are allowing us to manage external and internal dependencies way more easily. But what if I told you that you can directly use your other projects without even building them, not even mentioning publishing? With correct typescript configuration, you can even
have types and intellisense still working. That is what you can achieve by connecting other of your libraries (previously packages) in your package.json like this:

{
    "name": "@monorepo/app_1",
    "version": "1.0.0",
    "type": "module",
    "scripts": {
        // ...
    },
    "dependencies": {
        "@monorepo/commons": "*",
        "@monorepo/ui": "*"
    },
    // ...
}
Enter fullscreen mode Exit fullscreen mode

Notice the stars instead of version numbers. These mean that we are using whatever version is the newest. In our case, it's always the local one.

Pros:

  • Always the current version (also while developing in branches)
  • No need to publish libraries as packages and reinstall them
  • No local linking required to try out new library versions

Cons:

  • After a merge, dependencies might differ, potentially causing problems

This caveat can be mitigated with good test coverage and TypeScript running automatically through the complete codebase on the server before every build (which I highly recommend, regardless; ex. on the dev branch). This can be easily automated with husky).

 

If you want to know how to create such structure with Vue check out other tutorials in the series. If you prefer testing things on your own - try this template.

Top comments (0)