본문으로 건너뛰기
버전: 8.x

pnpm env <cmd>

Node.js 환경을 관리합니다.

danger

pnpm env does not include the binaries for Corepack. If you want to use Corepack to install other package managers, you need to install it separately (e.g. pnpm add -g corepack).

Commands

use

Install and use the specified version of Node.js

Install the LTS version of Node.js:

pnpm env use --global lts

Install Node.js v16:

pnpm env use --global 16

Install a prerelease version of Node.js:

pnpm env use --global nightly
pnpm env use --global rc
pnpm env use --global 16.0.0-rc.0
pnpm env use --global rc/14

Install the latest version of Node.js:

pnpm env use --global latest

Install an LTS version of Node.js using its codename:

pnpm env use --global argon

add

Added in: v8.9.0

Installs the specified version(s) of Node.js without activating them as the current version.

예시:

pnpm env add --global lts 18 20.0.1

remove, rm

Removes the specified version(s) of Node.JS.

사용 예:

pnpm env remove --global 14.0.0
pnpm env remove --global 14.0.0 16.2.3

list, ls

로컬 또는 원격으로 사용 가능한 Node.js 버전을 나열합니다.

로컬에 설치된 버전 인쇄:

pnpm env list

원격으로 사용 가능한 Node.js 버전 출력:

pnpm env list --remote

원격으로 사용 가능한 Node.js v16 버전 출력:

pnpm env list --remote 16

옵션

--global, -g

변경 사항은 시스템 전체에 적용됩니다.