Shivraj Singh Deopashivrajdeopa.hashnode.dev·Sep 10, 2023MonoRepo Development Style via Angular.source: https://angular.io/guide/file-structure The "ng new" angular cli command creates an initial skeleton application at the root level of the workspace, along with its end-to-end tests. The skeleton is for a simple Welcome application that is rea...Discuss·52 readsmonorepo
Manuel Salvatore MartoneforDucktors team blogducktors.hashnode.dev·Sep 8, 2023Create an EventCatalog Instance in a pnpm monorepoThis article has been written with my friend Alessandro Magionami Intro Creating an instance of EventCatalog is an easy action: npx @eventcatalog/create-eventcatalog@latest [name] Unfortunately, instantiating it in a pnpm workspace (monorepo) is a ...Discuss·11 likes·30 readspnpm
Faroque Abdullahfaroque.hashnode.dev·Aug 21, 2023Monorepo using Lerna - Node and ReactWhat is monorepo? Monorepo is an architectural concept for managing your code. The main purpose of monorepo architecture is to maintain a single codebase for multiple dependent or independent projects. Advantages of Monorepo: Easy code sharing: All ...Discuss·29 readslerna
Rahul Tilwanitilwani03.hashnode.dev·Aug 20, 2023Unlocking the Power of MonoreposIntroduction to Monorepo A monorepo is a software development strategy that has gained popularity in recent years. It involves storing multiple projects or components in a single repository, rather than having separate repositories for each project. ...Discuss·29 readsmonorepo
Jesús O.jodaz.hashnode.dev·Aug 17, 2023Migrating a Create-React-App monorepo to ViteI got several years developing React.js applications using creat-react-app as everyone did and never worried too much about tooling until it started to feel like a burden. My first touch with Vite was with a friend of mine building a Vue frontend, bu...Discussvite
Kasun Jayawardenaxpdkasun.hashnode.dev·Aug 2, 2023How to setup your react-native expo app with pnpm?If you look at the expo docs, you'll see the support is only for npm and yarn. But pnpm is a great tool, isn't it? The biggest gain you can achieve by using pnpm is that you can cut down the time for downloading all the dependencies when you decided ...Discuss·3 likes·62 readspnpm
Shubham Sareliyashubhamsareliya.hashnode.dev·Aug 2, 2023Monorepo vs. Microservices: Unraveling the Performance and Scalability DilemmaIntroduction As software developers, we often find ourselves faced with important architectural decisions that can significantly impact the performance and scalability of our applications. Two prominent approaches in modern software development are M...Discuss·33 readsmonorepo
Dany ParedesProwww.danywalls.com·Jul 29, 2023Easy Configuration of ESLint, Cypress, StoryBook, and Prettier for Angular Projects with NxAs an Angular enthusiast, I frequently create solutions that consist of multiple projects, such as apps and libraries. The Angular CLI is instrumental in managing these projects through Angular workspaces. I often use Angular in conjunction with othe...Discuss·1 like·655 readsAngular
Nathan Friesnathanfries.hashnode.dev·Jul 19, 2023Using npm workspaces with DockerIntro Whether starting from an existing containerized application that is being brought into an npm workspaces environment, or containerizing an existing node monorepo using npm workspaces, you might encounter some idiosyncrasies relating to how node...DiscussDocker
Ugochukwu Charles Eugeneeaglecharles.hashnode.dev·Jul 18, 2023Triggering Specific App Workflows in a Mono-RepoIntroduction In a mono repository containing multiple applications, each app typically has its own set of GitHub Actions workflows. However, when you push changes to the branch, all the workflows defined in the repository will run from scratch by def...Discussmonorepo