Ubuntu 22.10に最新版Node.jsをインストールする方法
環境
OSのバージョンを確認します
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.10 DISTRIB_CODENAME=kinetic DISTRIB_DESCRIPTION="Ubuntu 22.10"
操作方法
1.node.js 12 のインストールします
# apt -y install nodejs npm
2.nodeバージョンを確認します
# node -v v18.7.0
3.テストスクリプトを作成します
# nano test.js
以下のコードを記述します
var http = require('http'); var server = http.createServer(function(req, res) { res.write("Hello world, study Node.js Simple Web Server!\n"); res.end(); }).listen(8080);
4.動作確認します
# node test.js & [1] 4673
curlをインストールします
# apt install curl
# curl localhost:8080
Hello world, study Node.js Simple Web Server!
プロセスを終了します
# kill 4673