#nestjs
Read more stories on Hashnode
Articles with this tag
The Problem with Changing Directories In a monorepo with multiple products and packages, you often: Jump between directories to run commands for...
What Are Bin Scripts? Bin scripts are executable files defined within a package that can be invoked: From other packages in the workspace. Globally...
What Is Hoisting? Hoisting in Yarn Workspaces refers to the process of lifting dependencies from individual package directories to a shared...
What Are Workspaces? Workspaces are a powerful way to manage multiple packages within a single repository. They allow packages to: Interact as...
In the previous lesson, we explored the Node Modules Trick, renaming the packages folder to node_modules to allow Node.js to treat modules as...
In this lesson, we’ll create a basic monorepo using Node.js module resolution and a clever technique we call the Node Modules Trick. This will allow...