DEV Community

Dwarves Foundation
Dwarves Foundation

Posted on

What is PNPM?

What is PNPM?

https://res.cloudinary.com/practicaldev/image/fetch/s--5LB7xZGh--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o8e2at4huuuv08y24jvg.png

At Dwarves Foundation, we are always on the lookout for new tech. Researching PNPM was originally from research on what package manager Next.js uses. We then tried to experiment with it for dwarves/react-toolkit, which has given us some insights into some of the cost-benefits of using the package manager.

Introduction

PNPM is a package manager for Node.js which stands for “Performant NPM”. It was introduced in 2016, the same year Yarn was released. PNPM is a fast, disk space efficient package manager that supports monorepos. It creates a non-flat node_modules by default, so code has no access to arbitrary packages. PNPM performs installation in three stages:

  1. Dependency resolution - The package manager identifies and fetches all required dependencies to the store.
  2. Directory structure calculation - Based on these dependencies, it calculates the layout of the node_modules directory.
  3. Linking dependencies - it retrieves and establishes hard links from the store to node_modules for all remaining dependencies.

Advantages of PNPM

PNPM is a very performant alternative to most package managers. Here are a few advantages of using PNPM:

  • Saves disk space by using a content-addressable store for packages
  • Boosts installation speed with a three-stage process
  • Creates a non-flat node_modules directory for larger projects

Saving Disk Space

Supposing you have 10 Node.js projects on your personal computer if you use NPM/Yarn, you will have 10 node_modules folders with a heavy size.

If you use PNPM, things will be different. It introduces a new concept to us, called a content-addressable store. See the image below:

node modules

(source: https://pnpm.io/motivation#saving-disk-space)

As you can see, PNPM does not store packages in the node_modules folder, but rather in the content-addressable store. Therefore, in the node_modules folders of projects using PNPM, the packages are linked from the global store.

Thanks to this, package versions are only stored once on the disk

Boosting installation speed

PNPM performs installation in three stages:

  1. Dependency resolution: identifying and obtaining all necessary dependencies for the store.
  2. Directory structure calculation: determining the layout of the node_modules directory based on these dependencies.
  3. Linking dependencies: retrieving and establishing hard links from the store to node_modules for all remaining dependencies.

package installation progress

(source: https://pnpm.io/motivation#boosting-installation-speed)

This approach is significantly faster than the conventional method of identifying, obtaining, and saving all dependencies directly to the node_modules directory.

package installation progress 2

(source: https://pnpm.io/motivation#boosting-installation-speed)

Creating a non-flat node_modules directory

First of all, we must ask why NPM chooses the flat node_modules structure approach.

Going back in time, before the release of NPM version 3, at this point, node_modules in NPM were still in a non-flat structure. As shown in the example below:

node_modules
└─ foo
   ├─ index.js
   ├─ package.json
   └─ node_modules
      └─ bar
         ├─ index.js
         └─ package.json
Enter fullscreen mode Exit fullscreen mode

This approach has some issues such as:

  • The issue of long directory paths on the Windows operating system occurred because the package created a dependency tree that was too deep
  • Packages were copy-pasted in many places because they were required in different dependencies

Therefore, to solve this problem, NPM decided to flatten node_modules. After NPM version 3, the structure of the node_modules directory will become like this:

node_modules
├─ foo
|  ├─ index.js
|  └─ package.json
└─ bar
   ├─ index.js
   └─ package.json
Enter fullscreen mode Exit fullscreen mode

Consequently, the source code can access dependencies that are not explicitly declared in the project. Following the example above, even though the project only uses the foo package, we can completely use the bar package without declaring it in package.json.

Unlike NPM version 3, PNPM tries to solve the issues without flattening the dependency tree. Follow the example below:

node_modules
├─ foo -> .registry.npmjs.org/foo/1.0.0/node_modules/foo
└─ .registry.npmjs.org
   ├─ foo/1.0.0/node_modules
   |  ├─ bar -> ../../bar/2.0.0/node_modules/bar
   |  └─ foo
   |     ├─ index.js
   |     └─ package.json
   └─ bar/2.0.0/node_modules
      └─ bar
         ├─ index.js
         └─ package.json
---------------------------------------
->: a symlink (or junction on Windows)
Enter fullscreen mode Exit fullscreen mode

The foo package still contains its dependency bar in the form of a symlink. And what’s special is that foo doesn’t have node_modules inside, this way the dependency tree of foo won’t be as deep as in NPM before the release of v3.

At first glance, the structure may seem complicated, but when working on larger projects you will see that this structure is clearer than NPM/Yarn

Disadvantages of PNPM

However, there are a few disadvantages of using PNPM. One of them is that it can be slower than other package managers like Yarn or NPM when installing packages for the first time. It can also be difficult to use with some build tools like Webpack.

PNPM's node_modules layout uses symbolic links to create a nested structure of dependencies. This has some implications for certain setups, where Windows machines or certain permissioned Linux environments may have trouble accessing these links.

Another potential issue with PNPM is that its nested dependency structure may not be compatible with certain older packages. This can cause issues when trying to install packages that have dependencies that are not compatible with PNPM’s nested structure.

Showcase

Thankfully, PNPM is employed by numerous large companies, demonstrating its effectiveness. For an updated list, you can visit https://pnpm.io/users.

showcase

Conclusion

PNPM is a package manager for Node.js that offers several advantages over other popular package managers, including saving disk space and boosting installation speed. It also creates a non-flat node_modules directory, which can be helpful for larger projects. However, there are some potential disadvantages to using PNPM, such as compatibility issues with certain older packages and slower initial package installation times. Despite these drawbacks, PNPM is used by numerous large companies and may be worth considering for your own projects.

Overall, PNPM offers some unique benefits and is a viable alternative to other package managers for Node.js. It's worth exploring whether it's the right choice for your specific use case.

References:

Follow us on

Website: https://dwarves.foundation
Discord: https://discord.gg/dwarvesv
Fanpage: https://www.facebook.com/dwarvesf
LinkedIn: https://www.linkedin.com/company/dwarvesf
Substack: https://note.d.foundation/

Top comments (0)