0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

nodenvでNode.jsのバージョンを管理する際のコマンドまとめ

Posted at

Node.jsのバージョンを管理する為の備忘録

nodenvの導入方法は割愛しますが、慣れるまではこれを見て覚えようと思ったので、備忘録として運用に必要なコマンドをまとめておきます。

# nodenvのバージョン確認
$ nodenv -v

# nodenvでインストール可能なバージョンの一覧を取得
$ nodenv install -l

# インストールしたnodeのバージョンを確認
$ nodenv versions

# 必要なnodeのバージョンをインストール
$ nodenv install ******

# nodeのバージョンを確認
$ node -v

# グローバルのバージョンを設定
$ nodenv global ******

# cd 【プロジェクトディレクトリ】のバージョンを設定
$ nodenv local ******

# ローカルバージョンの設定を解除
$ nodenv local --unset

# シェルの再起動
$ exec $SHELL -l

# nodeの向き先を確認
$ which node

# リフレッシュ
# nodenv-package-rehashをインストールすれば不要
$ nodenv refresh

# node.jsをアンインストールする
$ nodenv uninstall ******

# インストールされているルート確認
$ nodenv root

# nodenvをアップデートする
# anyenv-updateのインストールが必要
$ nodenv update
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?