My "as few deps as possible" monorepo setup

Поделиться
HTML-код
  • Опубликовано: 16 май 2024
  • Become a TypeScript Wizard with my free beginners TypeScript Course:
    www.totaltypescript.com/tutor...
    Follow Matt on Twitter
    / mattpocockuk
    Join the Discord:
    mattpocock.com/discord
  • НаукаНаука

Комментарии • 133

  • @AbstruseJoker
    @AbstruseJoker Месяц назад +9

    This man’s content is always golden. Unlike theo and prime ranting about the most random crap

  • @kszyh_
    @kszyh_ Месяц назад +58

    Do you have it somewhere on github working?

  • @dpklabs
    @dpklabs Месяц назад +1

    Great overview - thanks Matt!

  • @Endrju219
    @Endrju219 Месяц назад +20

    What cannot be overlooked is how you provide types from your libraries to apps. If you do it as an npm package would do, via .d.ts files, you have to always rebuild the library with tsc after any modification, for the changes to be picked up by other parts of the monorepo. If you decide to point to .ts source code, you are able to skip this step, at the cost of tsc analysing your library source code even when type-checking the app, additionally imposing the same „strictness” between the compiler options (the app cannot be stricter than the library it uses).

    • @mattpocockuk
      @mattpocockuk  Месяц назад +9

      This is all pretty trivial with this setup. Turbo handles rebuilds. No need to point to .ts source code (which doesn't work for publishing anyway).

    • @xN811x
      @xN811x Месяц назад

      also pointing to ts code has the downside that all code must be directly under the package root. If you were to add a _src_ folder, you'd have to type that out as well into the import path.

    • @mattpocockuk
      @mattpocockuk  Месяц назад +3

      @@xN811x That isn't true, you can use "exports" in package.json to point to ts code, normal imports will work fine.

    • @brianpetersen7227
      @brianpetersen7227 Месяц назад +1

      This is where we landed at my company. We were using nx, but I found it to be too much of a blackbox and config heavy for our use case. We landed on a top level dir of libs/ with a single tsconfig.json file that is the most strict (so that it can be pulled in by our apps/ code). It does give tsc more work to do, but it's not that bad.

    • @AdamK3l
      @AdamK3l Месяц назад +2

      Same here, we also considered using nx to combine a react native and next.js app into a monorepo. I decided to keep it super simple and use pnpm and instead of each package having a build step just add to the tsconfig includes for each app. Works really nice and we don’t publish any of our packages anywhere, they’re just shared between those apps.

  • @user-gm9es6vr9w
    @user-gm9es6vr9w Месяц назад +2

    Super great and to the point. It would be cool if you did a series incrementally adding only the most beneficial packages for a project to have. I believe that would be very informative

  • @novailoveyou
    @novailoveyou Месяц назад

    Matt long time no see, nice to see your news vids

  • @jenreiss3107
    @jenreiss3107 Месяц назад +32

    add a `shell.nix` to automatically install turbo and pnpm for you and then your machine only needs one system dependency

    • @jenreiss3107
      @jenreiss3107 Месяц назад

      @@nekony3563 "why do you need gcc if you already have apt"

  • @hugazo
    @hugazo Месяц назад +1

    Great I’m starting a monorepo for a domain driven project i have in mind and this will help a lot

  • @gm112
    @gm112 Месяц назад +1

    Matt Pocock is my favorite dev youtuber

  • @rafaeltab
    @rafaeltab Месяц назад

    He's back babyyyyy!

  • @bernardstein1651
    @bernardstein1651 Месяц назад

    this video makes me think i picked the right dependencies thanks for the confidence boost now all i need to do is settle on a js framework

  • @joestrkr
    @joestrkr Месяц назад

    Using the exact same base setup for close to two years now 😁

  • @syedamz4574
    @syedamz4574 Месяц назад +2

    @mattpocockuk would you be able to suggest a similar set up with NX? A short video like that one would be great ❤.

  • @yiannis_p
    @yiannis_p Месяц назад

    This can’t be happening right now. I spent 5 days fighting my tsconfig to build my honojs api and I gave up and used eabuild 6 hours before this video dropped 😂.
    Awesome video as always!

  • @v_r_to_c_n8251
    @v_r_to_c_n8251 Месяц назад +2

    Hi, great video. This is the exact setup I implmented for our current project at work several months ago. It would be great to see some more details on the Turborepo. The documantation is good but the setup is not trivial

  • @user-lc3un9jw8t
    @user-lc3un9jw8t Месяц назад +1

    bun could technically replace all of those deps - bun works in monorepo setup, is fast & doesn't require transpiling from TS to JS (hence no need for turbo) and supports TS out of the box.

    • @mattpocockuk
      @mattpocockuk  Месяц назад +1

      Definitely couldn't replace tsc or turbo

  • @cristianpallares7565
    @cristianpallares7565 Месяц назад

    Very similar to what we use in winglang

  • @antontimeboy6094
    @antontimeboy6094 Месяц назад

    This looks very easy to use, and I would be tempted to try it. However, I've gotten so used to Deno (and have actually crafted a small monorepo setup that works for me), that I kinda don't wanna go back to plain Node.js?
    Is there a way to combine Deno and Monorepo?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      I'm sure there is! Not used Deno yet

  • @tarunpai2121
    @tarunpai2121 Месяц назад

    How are PRs managed in large monorepos?
    For example, I get the idea of using a monorepo for building a design system but when we add something like `/apps` to it; Are we adding "real" apps to the monorepo as well? and if this is the case, if you have 8-10 apps using your design system, how are PRs managed?

  • @prasinar1337
    @prasinar1337 Месяц назад +3

    what would your first choice for testing be in this kind of setup?

  • @ColinRichardson
    @ColinRichardson Месяц назад +4

    There is the big war on turbo vs nx..
    I personally like `nx` but I am not against turbo, I have just not seen any clear reason of why I would switch, so I just stick with what I know.
    Though, I do like that we have 6 completely independant apps that interlink externally from, so it's nice to use the `nx` tagging system to say `serve the tag:code-name` apps, or `serve the tag:legacy`

    • @tmbarral664
      @tmbarral664 Месяц назад

      It may depends on the FW we’re using. For instance, with Angular, nx is perfect as it comes with a lot of tools.
      For Vue, it’s a tad more of a struggle. While with Turbo, it’s pretty easy.
      (From what I’ve experimented, at least)

    • @ColinRichardson
      @ColinRichardson Месяц назад

      @@tmbarral664 We use Vue.. NX seems perfectly fine.. To be honest, if you are using Angular, using Turbo vs NX is the least of your worries.

  • @Cassp0nk
    @Cassp0nk Месяц назад

    How do you handle external deps? Eg you have multiple libs all using a 3rd party. Do you use the root package.json or per library imports and then have to deal with the version syncing explicitly per package. We currently use the root approach as easier to maintain but I can’t help but think it is killing build times as everything now has everything in its package.json. E.g. Monaco editor is huge and now all our projects have it in their packages due to it being in the root one. There is very little guidance on this in the docs…..

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Why would having a package in your node modules affect your build? If it's not requested by that app it won't be part of the code parsed for the build.
      The only way it would slightly slow things down is the install step.
      That said, I do recommend that all runtime dependencies are installed in the closest package.json. Implicit dependencies suck.

  • @sadn1ck
    @sadn1ck Месяц назад +1

    How would you handle UI libraries & CSS imports for building with TSC? Simplicity of this setup is unmatched but a bit lost on that front

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      What specific requirements do you have?

    • @DefekacjaOdbyta
      @DefekacjaOdbyta Месяц назад

      You won't use this minimalistic setup then - you'd need a bundler e.g. esbuild

  • @apteryx
    @apteryx Месяц назад

    Add biome to make it perfect

  • @tichopad
    @tichopad Месяц назад

    What I've come to find has trouble scaling is the "internal" packages you'd build continually with --watch. Monorepo really encourages you to put whatever you can in a separate package and having to build all of these each time you change anything becomes really cumbersome as you scale up. Not to mention stuff like fast-reload, which does become a bit harder to set up. I've started going down the rabbit hole of exporting the main TS file directly in "internal" packages, but that comes with its own set of issues.
    To be fair I don't have any answers here. It feels like this area is still not well thought-out.

  • @cristobalcontrerasrubio4695
    @cristobalcontrerasrubio4695 Месяц назад +1

    I would add tsup to build in ESM + CJS (and you need to setup package.json imports property)

    • @mattpocockuk
      @mattpocockuk  Месяц назад +8

      Disagree, ESM-only is the new meta now.

    • @cristobalcontrerasrubio4695
      @cristobalcontrerasrubio4695 Месяц назад +1

      @@mattpocockuk i really would like that all people think like you

    • @mattpocockuk
      @mattpocockuk  Месяц назад +4

      Now that Node allows require(ESM) we're good to go!

  • @zwanz0r
    @zwanz0r Месяц назад

    You can remove the turbo dependency using `tsc --build`. You'll get a lot of the same advantages, right?

    • @mattpocockuk
      @mattpocockuk  Месяц назад +2

      Turbo can run and cache other tasks, like tests/app builds too.
      tsc -b is good, but turbo is better.

  • @zilahi8
    @zilahi8 Месяц назад

    Did not get to like turborepo, however, nx is just pure awesomesness!

  • @davidhouse3448
    @davidhouse3448 Месяц назад

    With this setup, does each project run type checks on all dependencies as well as itself? How do you run type checks in this setup without doing a lot of duplicative work?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Nope, type checks only run on source code in that package.

    • @davidhouse3448
      @davidhouse3448 Месяц назад

      @@mattpocockuk Interesting. Is that because of workspaces? How are type checks scoped to the package without using composite and references?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      @@davidhouse3448 skipLibCheck: true

  • @hiagooliveira6510
    @hiagooliveira6510 Месяц назад +13

    Turbo repo vs nx, any thoughts ?

    • @SergiySev
      @SergiySev Месяц назад

      both are good, use whatever you prefer

    • @JohnZakaria
      @JohnZakaria Месяц назад

      We are using nx in our company (without DTE) and we are very happy with it. Moreover we pay 0 💵.
      (I am the author of nx-remotecache-gcp) so we store the cache in Google Buckets.

    • @onlywei
      @onlywei Месяц назад

      Private package registry > turbo/nx

    • @mattpocockuk
      @mattpocockuk  Месяц назад +4

      Both are good, I'm more familiar with Turbo (having worked at Vercel as their devrel)

    • @joelv4495
      @joelv4495 Месяц назад +12

      We used NX for awhile at my company and ultimately migrated away from it about 18 months ago. The situation may be somewhat better now, but our biggest pain points were:
      1. VERY config heavy, with poorly documented options in the JSON files. There was a lot that you could do, but we wound up having to review the actual NX source code because some features weren't even mentioned in the docs.
      2. Commingled dependencies. All projects share a SINGLE package.json in the project root. If project A depends on React@16 but project B needs React@18, you're SOL. There's no way to (sensibly) migrate one project at a time. This also has weird implications for Intellisense as you might get hinting suggestions for React packages when you're working on the API.

  • @peteremad5228
    @peteremad5228 18 дней назад

    i have question related to pnpm if you could help
    when using pnpm it install shared deps in nested node-modules folder in .pnpm inside main node-modules
    for some reason i need to import type sfrom packages that not top level ..is there a way to do that without setting the shamfully-hoist=true in .npmrc
    ( if somthing wrong with my explantion ..that's cause i recently switched to pnpm ..and trying to migrate)

    • @mattpocockuk
      @mattpocockuk  17 дней назад

      You'll need to specify the dependencies you need inside the packages where you need them - that's part of pnpm's philosophy. Implicit dependencies are bad.

    • @peteremad5228
      @peteremad5228 17 дней назад

      @@mattpocockuk thanks for your repsonse ,specify them in package.json as deps correct ?

    • @mattpocockuk
      @mattpocockuk  17 дней назад

      @@peteremad5228 Yes!

  • @kunal.burangi
    @kunal.burangi Месяц назад

    How would you compare it with nx ?

  • @megamind452
    @megamind452 Месяц назад

    can you please share a starter for chrome extension with typescript

  • @Boha362
    @Boha362 Месяц назад +1

    Why use turborepo if the goal is minimize deps? Could just use npm workspaces

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Turborepo doesn't do workspaces, pnpm does. Turborepo is a task runner - absolutely crucial in my eyes.

  • @real-oppenheimer
    @real-oppenheimer Месяц назад

    Could you show a setup where the "package" uses React? I want to use React there to e.g. write reusable hooks that are then used in the apps.

  • @xorlop
    @xorlop Месяц назад

    I am curious why you are choosing to go with pnpm? You don't really go into the why of that one. npm recently got caching similar to pnpm, so I am not sure what other reasons there are to use it. testing locally, I do save a fraction of the time using pnpm, but I am just not sure it is worth it

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      In what version did npm get pnpm-like caching? Want to read up on it before I answer.

    • @jonkoops
      @jonkoops Месяц назад

      Well especially in a monorepo where packages are published I really enjoy the `workspace:` protocol, as it reduces churn. NPM plain doesn't support that.

  • @rinart73
    @rinart73 Месяц назад

    What about ESLint? It's great but seems to be a bit of a mess right now. Flat config with separate config files doesn't work with turborepo.

    • @apteryx
      @apteryx Месяц назад +1

      ditch eslint and prettier for biome. only one dep, no longer do we need to install typescript-eslint and its million plugins

    • @rinart73
      @rinart73 Месяц назад

      @@apteryx I heard that it's pretty experimental and missing tons of rules

    • @henrikskog2909
      @henrikskog2909 Месяц назад +1

      Once you try out Biome and see the insane speed you will never want to go back to eslint

    • @upbeatstable
      @upbeatstable Месяц назад +1

      ​@@henrikskog2909 yeah dude just wish they update faster. I love the performance but there are a lot of things missing.
      Also the auto import delete is freaking annoying. It auto removes unused import on save but what I'm just the middle of coding it. I think a better option would be to show warning on dev then only auto delete on commit

  • @DefekacjaOdbyta
    @DefekacjaOdbyta Месяц назад

    the biggest pain in a monorepo setup is the watch mode. In the given example, if you run a certain package in watch mode, the watcher will only listen to files within that package. It won't re-build on monorepo dependencies change. I wonder what's your typical solution to this problem.
    A root-level tsconfig with specified paths is kind of a solution, but it requires paths to be manually maintained, which doesn't play nicely with the philosophy of a monorepo where packages are supposed to be self-contained.

    • @ra2enjoyer708
      @ra2enjoyer708 Месяц назад +1

      That's a very generic description of a problem, if the package doesn't have dependencies within the monorepo then why should it rebuild?

    • @mattpocockuk
      @mattpocockuk  Месяц назад +1

      This is what turborepo is for - only running the dev tasks required for a specific app.

    • @nekony3563
      @nekony3563 Месяц назад

      @@mattpocockuk Would it be more efficient or faster to use TypeScript's project references to run a single watch mode over the app and its packages?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      @@nekony3563 It's debatable, but I prefer Turbo because it can cache any bundler and the config is more portable/modular.

    • @DefekacjaOdbyta
      @DefekacjaOdbyta Месяц назад

      ​@@ra2enjoyer708 I meant exactly that scenario where a package being watched depends on another monorepo package. Why would I rebuild otherwise?

  • @stefan.astrand
    @stefan.astrand Месяц назад

    Why not Bun? Lint, test, typescript, and more in the same runtime. Doesn’t get any cleaner than that!

    • @user-fr2fm3ri3w
      @user-fr2fm3ri3w Месяц назад +3

      Bun isn’t exactly prod ready yet sadly 👀

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Not sure what it adds here

  • @carlosricardoziegler2650
    @carlosricardoziegler2650 Месяц назад

    I am fight with that and shadcn into ui to get correct type, I adjusted but see like workaround

    • @carlosricardoziegler2650
      @carlosricardoziegler2650 Месяц назад

      TRPC same, added as package but now with server and client components we need split the exports right ?

  • @erfansamani
    @erfansamani Месяц назад

    Is any one can help me for starting a big project? That's a admin panel that includes more than 200 pages and it should handle more that 10 individual parts. Do I should use monorepo? micro-frontend? there is no limit in using stack except angular.

    • @mattpocockuk
      @mattpocockuk  Месяц назад +1

      Doesn't sound like a monorepo - one big app.

    • @erfansamani
      @erfansamani Месяц назад

      ​@@mattpocockuk You mean I should use a single repo and go with it?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      @@erfansamani Yep

  • @jakub.gaik.official
    @jakub.gaik.official Месяц назад

    Do You even need turbo or nx? Npm supports workspaces without any dependencies

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Yes, running tasks in a monorepo is a massive pain. Caching the result of the tasks is an enormous speed boost.

    • @jakub.gaik.official
      @jakub.gaik.official Месяц назад

      Hmm if I were to build something like a component library or utils library where the monorepo is just for bundling everything in one place would it make sense to use such tools

    • @mattpocockuk
      @mattpocockuk  Месяц назад +1

      @@jakub.gaik.official Yes, it's still super useful, especially for coordinating CI.
      Basically, if you find yourself doing npm run build && npm run typecheck && npm run test I usually reach for turbo.

  • @edgeeffect
    @edgeeffect Месяц назад

    It's funny... watching this inspired me to give one of my personal projects a tidy up... but I ended up using a completely different tool kit to yours... ... "completely different"? ... ... well not quite.... ... it's got to have typescript right? ... ... right!

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Nice! What did you use?

    • @edgeeffect
      @edgeeffect Месяц назад

      @@mattpocockuk it wasn't a monorepo or anything: yarn, vitest, tsx, tsc, 11ty-3.0-alpha, eslint, stylelint, prettier... not exactly "minimal" either ;)

  • @PRonYouTube
    @PRonYouTube Месяц назад

    big if tru

  • @Fik0n
    @Fik0n Месяц назад

    Now throw react native in there

  • @wvovaw3052
    @wvovaw3052 Месяц назад

    As a jQuery developer, I'm offended that it wasn't mentioned.

  • @duttaoindril
    @duttaoindril Месяц назад +2

    Why not bun?

  • @Mohammed_school_s
    @Mohammed_school_s Месяц назад

    Can you use graphql tada in monorepo?

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Yes!

    • @Mohammed_school_s
      @Mohammed_school_s Месяц назад

      @@mattpocockuk when I do that, I lose typesafe from vscode.

    • @Mohammed_school_s
      @Mohammed_school_s Месяц назад

      This not work with me, I try many times and after a lot of search I can't do that. If you have time you can try it to see that

  • @mohammedhuzaifa8654
    @mohammedhuzaifa8654 Месяц назад

    Does anyone have a github repo for this setup to refer to

  • @onlywei
    @onlywei Месяц назад

    My favorite kind of monorepo is one that doesn't even have a package.json in the root of the repository. The folder structure is as follows:
    apps/
    app1 ... appN/
    packages/
    package1 ... packageN/
    Each app and package is essentially "isolated" with their own package.json files, and the packages are all published and versioned to a private registry.

  • @srivatsav11
    @srivatsav11 Месяц назад

    Let us assume we have a react package under /packages/core_package.
    (This is where most of the development happens)
    We are using this package in an app under /apps/website
    How can we setup a hot reload functionality here to view changes in the app ? Should we build the package each time and then run the app or is there a better way ?
    Any help would be greatly appreciated. Thank you 🙏

  • @_bug56
    @_bug56 Месяц назад

    What does pnpm add to this?

    • @mattpocockuk
      @mattpocockuk  Месяц назад +1

      Makes package install faster, handles workspaces.

    • @_bug56
      @_bug56 Месяц назад

      @@mattpocockuk I see, I like yarn workspaces but if it also makes installs faster that's pretty good!
      Come to think of it, doesn't turborepo do the workspaces thing?

  • @dandogamer
    @dandogamer Месяц назад

    Now just to install 200 npm dependencies to handle the most common TS tasks lol

  • @Virgoblack97
    @Virgoblack97 Месяц назад

    It’s been awhile

  • @mahadevovnl
    @mahadevovnl Месяц назад

    I'll never understand Monorepos. It becomes a huge mess even with few developers, and it gets infinitely worse with more developers. Keep your projects small and to the point, each in their own repository.

    • @onthefence928
      @onthefence928 Месяц назад

      Monorepos are for keeping projects small but dependencies uncomplicated. Pulling the latest from the repo will automatically sync all of your projects together and can be built together in whatever combination you need.
      Otherwise you have to keep your various projects in sync and coordinate a lot more between teams to sync

  • @scaffus
    @scaffus Месяц назад +3

    3:30 You forgot the holy grail Svelte 😡😡
    (great mono tho)

  • @lacherolachero9409
    @lacherolachero9409 Месяц назад

    Imagine run dev in big monorepo, wouldn’t recommend that

    • @ra2enjoyer708
      @ra2enjoyer708 Месяц назад

      Works for nextjs.

    • @mattpocockuk
      @mattpocockuk  Месяц назад +3

      This is what turborepo is for - running only the dev tasks needed for a specific app.

  • @juxuanu
    @juxuanu Месяц назад

    You don't even need to build.

    • @mattpocockuk
      @mattpocockuk  Месяц назад

      Not sure what you mean, but - yes, you do.