Debian11.2にNode.js、NPMをインストールする

環境
# cat /etc/debian_version
11.2

Node.jsのインストール
1.システムを更新します

# sudo apt update
# sudo apt upgrade -y
# sudo apt install build-essential -y

2.リポジトリを追加します

# curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash -

3.Node.jsをインストールします

# sudo apt-get update
# sudo apt install nodejs -y

3.node.jsのバージョンを確認します

# node -v
v17.6.0

4.npmのバージョンを確認します

# npm -v
8.5.1

 

Debian 11

Posted by arkgame