DEV Community

Discussion on: How do you deal with node_modules?

Collapse
 
vonheikemen profile image
Heiker

I use pnpm. Like deno it uses a "central storage" where it keeps all the packages and never downloads the same package version twice. The folder node_modules still exists in your local project but it will be filled with symlinks and other magical stuff that point to the central storage in your disk.

Collapse
 
madza profile image
Madza • Edited

thanks, that's a nice approach 😉
8k stars and somehow I missed it, lol 😁