pnpm is a fast, disk efficient package manager for the JavaScript ecosystem. When using npm or Yarn, if you have 100 projects using a dependency, you will have 100 copies of that dependency saved on disk. If you depend on different versions of the dependency, only the files that differ are added to the store. For instance, if it has 100 files, and a new version has a change in only one of those files, pnpm update will only add 1 new file to the store, instead of cloning the entire dependency just for the singular change. All the files are saved in a single place on the disk.
Its really good idea .But i found npm fast enough. npm became much faster in recent version that i found it faster than yarn
If other people in my project are using yarn, can start using pnpm by myself?
Tried to use it but my VSCODE not found the packages and give me 100s of errors in TypeScript 😢