My "as few deps as possible" monorepo setup

Поділитися
Вставка
  • Опубліковано 4 жов 2024

КОМЕНТАРІ • 140

  • @AbstruseJoker
    @AbstruseJoker 4 місяці тому +20

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

  • @kszyh_
    @kszyh_ 4 місяці тому +65

    Do you have it somewhere on github working?

  • @Endrju219
    @Endrju219 4 місяці тому +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  4 місяці тому +10

      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 4 місяці тому

      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  4 місяці тому +4

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

    • @luckywatcher42
      @luckywatcher42 4 місяці тому +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 4 місяці тому +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.

  • @Gonzalo-x4n
    @Gonzalo-x4n 4 місяці тому +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

  • @jenreiss3107
    @jenreiss3107 4 місяці тому +36

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

    • @jenreiss3107
      @jenreiss3107 4 місяці тому

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

    • @joebowbeer
      @joebowbeer 19 днів тому

      vs devcontainer?

    • @PanagiotisChatzigiannis
      @PanagiotisChatzigiannis 8 днів тому

      turborepo isn't supported by nix though, or vice versa, idk

    • @jenreiss3107
      @jenreiss3107 8 днів тому

      @@PanagiotisChatzigiannis but it's a rust workspace -- you could easily build a nix derivation for it and post it on nixpkgs

  • @dpklabs
    @dpklabs 4 місяці тому +1

    Great overview - thanks Matt!

  • @hugazo
    @hugazo 4 місяці тому +1

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

  • @gm112
    @gm112 4 місяці тому +1

    Matt Pocock is my favorite dev youtuber

  • @novailoveyou
    @novailoveyou 4 місяці тому

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

  • @v_r_to_c_n8251
    @v_r_to_c_n8251 4 місяці тому +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

  • @ColinRichardson
    @ColinRichardson 4 місяці тому +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 4 місяці тому

      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 4 місяці тому

      @@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.

  • @joestrkr
    @joestrkr 4 місяці тому

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

  • @syedamz4574
    @syedamz4574 4 місяці тому +2

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

  • @bernardstein1651
    @bernardstein1651 4 місяці тому

    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

  • @tichopad
    @tichopad 4 місяці тому +1

    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.

    • @nnnikolay
      @nnnikolay 17 днів тому

      moreover, tsc --watch will take over the flow and the turbo command will never end

  • @rafaeltab
    @rafaeltab 4 місяці тому

    He's back babyyyyy!

  • @Chris-j2g5c
    @Chris-j2g5c 4 місяці тому +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  4 місяці тому +1

      Definitely couldn't replace tsc or turbo

    • @graffhyrum
      @graffhyrum 3 місяці тому

      ​@@mattpocockuk where do you see Bun coming up short? I'm looking at the features pages side by side and not seeing the gap.

  • @cristobalcontrerasrubio4695
    @cristobalcontrerasrubio4695 4 місяці тому +1

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +8

      Disagree, ESM-only is the new meta now.

    • @cristobalcontrerasrubio4695
      @cristobalcontrerasrubio4695 4 місяці тому +1

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +4

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

  • @Grishopping
    @Grishopping 3 місяці тому

    thanks for the video... do you have one where you show how to configure prism with a turborepo ?
    if not, would you be willing to make a practical video? please?

  • @hiagooliveira6510
    @hiagooliveira6510 4 місяці тому +13

    Turbo repo vs nx, any thoughts ?

    • @SergiySev
      @SergiySev 4 місяці тому

      both are good, use whatever you prefer

    • @JohnZakaria
      @JohnZakaria 4 місяці тому

      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 4 місяці тому

      Private package registry > turbo/nx

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +6

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

    • @joelv4495
      @joelv4495 4 місяці тому +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.

  • @cristianpallares7565
    @cristianpallares7565 4 місяці тому

    Very similar to what we use in winglang

  • @Boha362
    @Boha362 4 місяці тому +1

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

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

  • @zilahi8
    @zilahi8 4 місяці тому

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

  • @nnnikolay
    @nnnikolay 19 днів тому

    how do you use it for dev/local env where you want to restart the Node automatically whenever either an app or a library code got changed?

  • @apteryx
    @apteryx 4 місяці тому

    Add biome to make it perfect

  • @tarunpai2121
    @tarunpai2121 4 місяці тому

    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 4 місяці тому +3

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

  • @DefekacjaOdbyta
    @DefekacjaOdbyta 4 місяці тому

    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 4 місяці тому +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  4 місяці тому +1

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

    • @nekony3563
      @nekony3563 4 місяці тому

      @@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  4 місяці тому

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

    • @DefekacjaOdbyta
      @DefekacjaOdbyta 4 місяці тому

      ​@@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 4 місяці тому

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

    • @PanosPitsi
      @PanosPitsi 4 місяці тому +3

      Bun isn’t exactly prod ready yet sadly 👀

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

      Not sure what it adds here

  • @megamind452
    @megamind452 4 місяці тому

    can you please share a starter for chrome extension with typescript

  • @yiannis_p
    @yiannis_p 4 місяці тому

    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!

  • @antontimeboy6094
    @antontimeboy6094 4 місяці тому

    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  4 місяці тому

      I'm sure there is! Not used Deno yet

  • @sadn1ck
    @sadn1ck 4 місяці тому +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  4 місяці тому

      What specific requirements do you have?

    • @DefekacjaOdbyta
      @DefekacjaOdbyta 4 місяці тому

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

  • @onlywei
    @onlywei 4 місяці тому

    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.

  • @zwanz0r
    @zwanz0r 4 місяці тому

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +2

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

  • @ericaska
    @ericaska 2 місяці тому

    It always start with three and ends with a thousand 😢.

  • @duttaoindril
    @duttaoindril 4 місяці тому +2

    Why not bun?

  • @edgeeffect
    @edgeeffect 4 місяці тому

    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  4 місяці тому

      Nice! What did you use?

    • @edgeeffect
      @edgeeffect 4 місяці тому

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

  • @Cassp0nk
    @Cassp0nk 4 місяці тому

    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  4 місяці тому

      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.

  • @xorlop
    @xorlop 4 місяці тому

    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  4 місяці тому

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

    • @jonkoops
      @jonkoops 4 місяці тому

      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.

  • @real-oppenheimer
    @real-oppenheimer 4 місяці тому

    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.

  • @rinart73
    @rinart73 4 місяці тому

    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 4 місяці тому

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

    • @rinart73
      @rinart73 4 місяці тому

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

    • @henrikskog2909
      @henrikskog2909 4 місяці тому

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

  • @carlosricardoziegler2650
    @carlosricardoziegler2650 4 місяці тому

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

    • @carlosricardoziegler2650
      @carlosricardoziegler2650 4 місяці тому

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

  • @kunal.burangi
    @kunal.burangi 4 місяці тому

    How would you compare it with nx ?

  • @PRonYouTube
    @PRonYouTube 4 місяці тому

    big if tru

  • @davidhouse3448
    @davidhouse3448 4 місяці тому

    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  4 місяці тому

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

    • @davidhouse3448
      @davidhouse3448 4 місяці тому

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

      @@davidhouse3448 skipLibCheck: true

  • @wvovaw3052
    @wvovaw3052 4 місяці тому

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

  • @mohammedhuzaifa8654
    @mohammedhuzaifa8654 4 місяці тому

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

  • @jakub.gaik.official
    @jakub.gaik.official 4 місяці тому

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

      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 4 місяці тому

      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  4 місяці тому +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.

  • @peteremad5228
    @peteremad5228 3 місяці тому

    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  3 місяці тому

      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 3 місяці тому

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

    • @mattpocockuk
      @mattpocockuk  3 місяці тому

      @@peteremad5228 Yes!

  • @erfansamani
    @erfansamani 4 місяці тому

    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  4 місяці тому +1

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

    • @erfansamani
      @erfansamani 4 місяці тому

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

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

      @@erfansamani Yep

  • @Fik0n
    @Fik0n 4 місяці тому

    Now throw react native in there

  • @dandogamer
    @dandogamer 4 місяці тому

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

  • @Mohammed_school_s
    @Mohammed_school_s 4 місяці тому

    Can you use graphql tada in monorepo?

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

      Yes!

    • @Mohammed_school_s
      @Mohammed_school_s 4 місяці тому

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

    • @Mohammed_school_s
      @Mohammed_school_s 4 місяці тому

      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

  • @mahadevovnl
    @mahadevovnl 4 місяці тому

    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 4 місяці тому

      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

  • @crystalzac1
    @crystalzac1 4 місяці тому

    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 🙏

  • @scaffus
    @scaffus 4 місяці тому +3

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

  • @_bug56
    @_bug56 4 місяці тому

    What does pnpm add to this?

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +1

      Makes package install faster, handles workspaces.

    • @_bug56
      @_bug56 4 місяці тому

      @@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?

  • @CritterPop
    @CritterPop 4 місяці тому

    It’s been awhile

  • @lacherolachero9409
    @lacherolachero9409 4 місяці тому

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

    • @ra2enjoyer708
      @ra2enjoyer708 4 місяці тому

      Works for nextjs.

    • @mattpocockuk
      @mattpocockuk  4 місяці тому +3

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

  • @juxuanu
    @juxuanu 4 місяці тому

    You don't even need to build.

    • @mattpocockuk
      @mattpocockuk  4 місяці тому

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