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?
Nowadays you can do
pnpm store path
which, according to pnpm's documentation:
Returns the path to the active store directory.
The default locations of the store are:
$XDG_DATA_HOME
env variable is set, then $XDG_DATA_HOME/pnpm/store
~/AppData/Local/pnpm/store
~/Library/pnpm/store
~/.local/share/pnpm/store
Related docs: https://pnpm.io/npmrc#store-dir
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.
As of v7, refer to @renardesque's or @nouvist's answer's below.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With