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?

Node.js環境構築(WSL2)

Posted at

はじめに

個人の備忘です。WSL2上でNode.jsを使えるように環境構築します。
ディストリビューションはUbuntu24.04をインストールしました。

事前準備

Ubuntuターミナルで以下のコマンドを実行します。

suto apt update & sudo apt upgrade

curlをインストール

必要なコンテンツをインストールするためにcurlをインストールします。

sudo apt-get install curl

nvmをインストール

nvmをインストールすることにより、Node.jsのバージョン管理をコマンドライン上で行うことができます。
インストールするために、以下のコマンドをコマンドラインで実行します。

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash

nvmがインストールできていることを確認するために、ターミナルを再起動して以下のコマンドを入力します。

command -v nvm

ターミナル上にnvmと表示されればOKです。

Node.jsのLTSリリースをインストールする

nvmを用いて、Node.jsの安定バージョンをインストールします。以下のコマンドでインストールできます。

nvm install --lts

続けて、nvm lsと入力してNode.jsがインストールされていることを確認しましょう。
v22.11.0がインストールされたことを確認できました。

->     v22.11.0
default -> lts/* (-> v22.11.0)
iojs -> N/A (default)
unstable -> N/A (default)
node -> stable (-> v22.11.0) (default)
stable -> 22.11 (-> v22.11.0) (default)

node --versionでも現在のNode.jsのバージョンを確認できます。
せっかくなので、npmバージョンも確認します。

> npm --version
10.9.0

npmがインストールされていることも確認できました。

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?