Debian 11.2にNode.js 12 をインストールする
環境情報
# cat /etc/debian_version
11.2
インストールの方法
1.Node.js 12をインストールします
# apt -y install nodejs
2.nodeバージョンを確認します
# node -v v12.22.5
3.テストプログラムを作成します
# cat > test.js <<'EOF' var http = require('http'); var server = http.createServer(function(req, res) { res.write("Node.js 12 server test page!\n"); res.end(); }).listen(8080); EOF
4.テストプログラムを実行します
# node test.js &
[1] 16357
5.curlのインストール
# apt install curl
6.curlコマンドを実行します
# curl 127.0.0.1:8080
Node.js 12 server test page!
7.プロセスを終了します
# kill 16357