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 3 years have passed since last update.

【Windows】Nodeインストール手順の備忘録

Last updated at Posted at 2021-01-28

#はじめに

  • Windows環境上で、Nodeの開発環境を構築する機会があったので、その備忘録です。
  • Nodeの管理ツールとして、nvm for windowsを使用しました。

nvm for windowsのインストール

  • nvm for windowsのインストーラをダウンロードし、インストールします(全てデフォルト設定でOK)。
    image.png

Node.jsのインストール

  • コマンドプロンプトを起動し、インストール可能なバージョンを確認します。
cmd
# インストール可能なバージョンを表示
$ nvm list available

WS000000.JPG

  • バージョンを指定して、インストールします。
cmd
# v10.16.2をインストール
$ nvm install 10.16.2
$ node --vesion
# v10.16.2
  • 使用中のバージョンを確認します。
cmd
$ nvm list
# *10.16.2
  • 別バージョンをインストールします。
cmd
# v12.13.1をインストール
$ nvm install 12.13.1
  • インストール済みバージョンを確認します。
cmd
$ nvm list
#   12.13.1
#  *10.16.2
# ⇒ v10.16.2を使用中
  • バージョンを切り替えます。
cmd
# バージョン指定
$ nvm use 12.13.1
$ nvm list
#  *12.13.1
#   10.16.2
$ node  --version
# v12.13.1
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?