pnpm: Fast, disk space efficient package manager for JavaScript
1–10 of 173 posts
Re: pnpm: Fast, disk space efficient package manager for JavaScript
#2Re: pnpm: Fast, disk space efficient package manager for JavaScript
#3Re: pnpm: Fast, disk space efficient package manager for JavaScript
#4This is my default one, _much_ faster and disk space reduced dramatically when I have lots of node_modules in use. Can't recommend enough.
I guess their benchmarks cover both [0]. But I'm also curious about independent figures.
Re: pnpm: Fast, disk space efficient package manager for JavaScript
#5Re: pnpm: Fast, disk space efficient package manager for JavaScript
#6And can I use pnpm when working in a team where other devs use npm?
Re: pnpm: Fast, disk space efficient package manager for JavaScript
#7Re: pnpm: Fast, disk space efficient package manager for JavaScript
#8Is there any gotcha if I switch from npm to pnpm? And can I use pnpm when working in a team where other devs use npm?
You definitely should use the same manager (npm, yarn, pnpm, whatever) as your teammates' or you're going to run into problems, either with them or with your CI workflow.
Re: pnpm: Fast, disk space efficient package manager for JavaScript
#9pnpm is awesome except when it does not work - which happens very rarely but it is a nightmare to debug. For all the other times, it is way faster and lightweight than npm.
Re: pnpm: Fast, disk space efficient package manager for JavaScript
#10Is there any gotcha if I switch from npm to pnpm? And can I use pnpm when working in a team where other devs use npm?
pnpm uses its own lock file (pnpm-lock.yaml), while npm uses package-lock.json You definitely should use the same manager (npm, yarn, pnpm, whatever) as your teammates' or you're going to run into problems, either with them or with your CI workflow.