Kurulum
Script (komut dosyası) kullanarak
On POSIX systems, you may install pnpm even if you don't have Node.js installed, using the following script:
curl -fsSL https://get.pnpm.io/install.sh | sh -
If you don't have curl installed, you would like to use wget:
wget -qO- https://get.pnpm.io/install.sh | sh -
Windows'ta (PowerShell):
iwr https://get.pnpm.io/install.ps1 -useb | iex
You may use the pnpm env command then to install Node.js.
Using Corepack
Since v16.13, Node.js is shipping Corepack for managing package managers. This is an experimental feature, so you need to enable it by running:
corepack enable
This will automatically install pnpm on your system. However, it probably won't be the latest version of pnpm. To upgrade it, check what is the latest pnpm version and run:
corepack prepare pnpm@<version> --activate
npm ile
npm install -g pnpm
Using Homebrew
If you have the package manager installed, you can install pnpm using the following command:
brew install pnpm
Using Scoop
If you have Scoop installed, you can install pnpm using the following command:
scoop install nodejs-lts pnpm
tip
Do you wanna use pnpm on CI servers? See: Continuous Integration.
Uyumluluk
Here is a list of past pnpm versions with respective Node.js version support.
Node.js | pnpm 4 | pnpm 5 | pnpm 6 | pnpm 7 |
---|---|---|---|---|
Node.js 10 | ✔️ | ✔️ | ❌ | ❌ |
Node.js 12 | ✔️ | ✔️ | ✔️ | ❌ |
Node.js 14 | ✔️ | ✔️ | ✔️ | ✔️ |
Node.js 16 | ?️ | ?️ | ✔️ | ✔️ |
Node.js 18 | ?️ | ?️ | ✔️ | ✔️ |
Sorun giderme
pnpm herhangi bir sebepten dolayı çalışmıyor, bozulmuş ve yeniden yüklemene rağmen düzelmiyorsa, PATH sistem değişkeninden elle kaldırman gerekebilir.
Varsayalım, pnpm install
komutunu çalıştırdığında aşağıdaki hatayı alıyorsun:
C:\src>pnpm install
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'C:\Users\Bence\AppData\Roaming\npm\pnpm-global\4\node_modules\pnpm\bin\pnpm.js'
←[90m at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)←[39m
←[90m at Function.Module._load (internal/modules/cjs/loader.js:725:27)←[39m
←[90m at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)←[39m
←[90m at internal/main/run_main_module.js:17:47←[39m {
code: ←[32m'MODULE_NOT_FOUND'←[39m,
requireStack: []
}
İlk olarak pnpm'in kurulu olduğu konumu bulman gerekiyor ve which pnpm
komutu ile bulabilirsin. Eğer Windows kullanıyorsan, bu komutu Git Bash'de çalıştırabilirsin. Çalıştırdıktan sonra pnpm'in kurulu olduğu konum, aşağıdakine benzer listelenecektir:
$ which pnpm
/c/Program Files/nodejs/pnpm
pnpm'in kurulu olduğunu konumu artık öğrendiğine göre, o konuma giderek pnpm ile alakalı, bütün dosyaları silebilirsin. (pnpm.cmd
, pnpx.cmd
, pnpm
, vb.). Silme işleminden sonra, pnpm'i yeniden kurabilirsin. Normal bir şekilde çalışacaktır umarım.
pnpm'i kaldırma
If you need to remove the pnpm CLI from your system and any files it has written to your disk, see Uninstalling pnpm.