My disk space was getting low and I knew I had to delete some of the node_modules
from my projects. I was looking for a way where dependencies between projects could be easily shared without downloading again or copying the packages into the current project directory.
pnpm
is exactly the tool designed to solve these issues. It creates hard links to different packages instead of storing entire packages. Just remove the old node_modules
folder and run pnpm install
inside your project and you're good to go.
References:
Top comments (0)