Search code examples
pnpm

How to get pnpm store directory


Is there any way how to check directory/path of pnpm store?

I know you can set it with npm config set store /path/to/.pnpm-store, but npm config get store in my case returns undefined, which I guess means to pnpm to use some default, but where can I find this default value?


Solution

  • Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store so that it returns the default location.

    As of v3, the pnpm store is located at ~/.pnpm-store by default.

    You could also open the file node_modules/.modules.yaml in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.

    Update 2022:

    As of v7, refer to @renardesque's or @nouvist's answer's below.