CentOS Stream 9
Sponsored Link

Node.js 18 : インストール2022/09/30

 
Node.js 18 をインストールします。
[1] 現在、有効になっている Node.js のバージョンを確認してインストールします。
[root@dlp ~]#
dnf module list nodejs

CentOS Stream 9 - AppStream
Name      Stream    Profiles                                Summary
nodejs    18        common [d], development, minimal, s2i   Javascript runtime

Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled

# 他バージョンが有効な場合は一旦リセットして有効バージョンを切り替え

[root@dlp ~]#
dnf module reset nodejs

[root@dlp ~]#
dnf module -y enable nodejs:18
# Node.js 18 を指定してインストール

[root@dlp ~]#
dnf module -y install nodejs:18/common

Dependencies resolved.
========================================================================================
 Package            Arch    Version                                     Repo        Size
========================================================================================
Installing group/module packages:
 nodejs             x86_64  1:18.7.0-1.module_el9+236+76754d90          appstream   12 M
 npm                x86_64  1:8.15.0-1.18.7.0.1.module_el9+236+76754d90 appstream  2.2 M
Installing weak dependencies:
 nodejs-docs        noarch  1:18.7.0-1.module_el9+236+76754d90          appstream  7.2 M
 nodejs-full-i18n   x86_64  1:18.7.0-1.module_el9+236+76754d90          appstream  8.2 M
Installing module profiles:
 nodejs/common

Transaction Summary
========================================================================================
Install  4 Packages
.....
.....

[root@dlp ~]#
node -v

v18.7.0

# テストスクリプトを作成して動作確認

[root@dlp ~]# cat > nodejs_test.js <<'EOF' 
var http = require('http');
var server = http.createServer(function(req, res) {
  res.write("Hello, This is the Node.js Simple Web Server!\n");
  res.end();
}).listen(8080);
EOF 

[root@dlp ~]#
node nodejs_test.js &

[1] 1475
[root@dlp ~]#
curl localhost:8080

Hello, This is the Node.js Simple Web Server!
[root@dlp ~]#
kill 1475

関連コンテンツ