1. ホーム
  2. ノード

Mac ノードのバージョニング nvm コマンドが見つかりません。

2022-01-24 09:58:47
<パス
## System root directory
cd ~

## Execute the command
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash

## Create the .bash_profile file
touch .bash_profile

## Open and edit the .bash_profile file
open -e .bash_profile

## Copy the following to .bash_profile and save it
[[ -s $HOME/.nvm/nvm.sh ]] && . $HOME/.nvm/nvm.sh # This loads NVM

nvmコマンド

<ブロッククオート

nvm install ## 指定されたバージョンをインストールします、曖昧でも構いません。
nvm uninstall ## インストールされた指定バージョンを削除、構文はinstallに似ている
nvm use (-delete-prefix) ## 指定されたバージョンのノードを使用するように切り替えます。
nvm ls ## インストールされている全バージョンを一覧表示する
nvm ls-remote ## リモートサーバのバージョンをリストアップ (公式のノードバージョンリスト)
nvm current ## 現在のバージョンを表示する