What’s the Best Tool for Managing a Backend Monorepo?

0
2
Asked By CuriousCoder27 On

I'm trying to decide on the right tool for managing a backend monorepo. I have a few requirements, including good Docker support since we rely on it for both development and production. I need separate package.json files for each microservice and want to keep shared libraries in one central repository. So far, I've looked at three options: npm workspaces, which seems okay but I think there might be better choices; Nx, which prefers a single package.json, and seems more frontend-oriented; and Turborepo, but I'm not sure how beneficial it would be if Docker caching isn't a factor.

1 Answer

Answered By DevDude42 On

I personally use pnpm for our monorepo and find it works really well! It's straightforward, and manages the project beautifully. Don't shy away from trying it out!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.