# Anyone use PNPM over NPM & Yarn?

**URL:** https://discourse.roots.io/t/anyone-use-pnpm-over-npm-yarn/11067
**Category:** general
**Created:** 2017-12-05T17:26:31Z
**Posts:** 4

## Post 1 by @Webstractions — 2017-12-05T17:26:31Z

Haven’t tried this yet. Looking at their benchmarks and approach, it looks sweet.

> pnpm uses hard links and symlinks to save one version of a module only ever once on a disk. When using npm or Yarn for example, if you have 100 projects using the same version of lodash, you will have 100 copies of lodash on disk. With pnpm, lodash will be saved in a single place on the disk and a hard link will put it into the node\_modules where it should be installed.
> 
> As a result, you save gigabytes of space on your disk and you have a lot faster installations! If you’d like more details about the unique node\_modules structure that pnpm creates and why it works fine with the Node.js ecosystem

> **[GitHub - pnpm/pnpm: Fast, disk space efficient package manager](https://github.com/pnpm/pnpm)**
>
> Fast, disk space efficient package manager. Contribute to pnpm/pnpm development by creating an account on GitHub.

---

## Post 2 by @Stephen — 2017-12-06T13:40:36Z

Looks interesting! Along similar lines:

> **[Introducing Turbo: 5x faster than Yarn & NPM, and runs natively in-browser 🔥](https://medium.com/@ericsimons/introducing-turbo-5x-faster-than-yarn-npm-and-runs-natively-in-browser-cc2c39715403)**
>
> Note: This is part of a talk I’m giving at Google’s Mountain View campus on Wednesday, December 6th — come join!

---

## Post 3 by @Webstractions — 2017-12-06T17:29:39Z

@Stephen I read that article on Medium and discovered PNPM via the comments.! :grin:

Turbo, however, is built to be used with [StackBlitz](https://stackblitz.com/), which is an in-browser VSCode IDE. A general idea of how they put Turbo together is explained in this [GitHub comment](https://github.com/unpkg/unpkg/issues/35#issuecomment-317128917).

---

## Post 4 by @Stephen — 2017-12-07T09:50:48Z

It’s great to see innovation in these tools and in the end, it can only mean good things for daily development life :slight_smile:

I’ll be keeping an eye on these projects!
