CentOS8.3にnodejsをインストールする方法

1.OSの確認
# cat /etc/redhat-release
CentOS Linux release 8.3.2011

2.nodejsの確認
# yum info nodejs

メタデータの期限切れの最終確認: 0:07:23 時間前の 2021年04月07日 06時36分01秒 に 実施しました。
インストール済みパッケージ
名前         : nodejs
エポック     : 1
バージョン   : 10.24.0
リリース     : 1.module_el8.3.0+717+fa496f1d
Arch         : x86_64
サイズ       : 30 M
ソース       : nodejs-10.24.0-1.module_el8.3.0+717+fa496f1d.src.rpm
リポジトリー : @System
repo から    : appstream
概要         : JavaScript runtime
URL          : http://nodejs.org/
ライセンス   : MIT and ASL 2.0 and ISC and BSD
説明         : Node.js is a platform built on Chrome's JavaScript runtime
             : for easily building fast, scalable network applications.
             : Node.js uses an event-driven, non-blocking I/O model that
             : makes it lightweight and efficient, perfect for data-intensive
             : real-time applications that run across distributed devices.

3.nodejsのインストール
# yum install -y nodejs

4.nodejsの確認
# node –version
v10.24.0

# npm –version
6.14.11

5.hello.js作成

var http = require('http');

http.createServer(
  function (req, res) {
    res.writeHead(200, {"Content-Type": "text/plain"});
    res.write('Hello World!');
    res.end();
  }
).listen(89,"0.0.0.0");

6.ファイアウォール設定
# firewall-cmd –add-port=89/tcp –permanent
success
# firewall-cmd –reload
success

7.nodejsの実行
# node hello.js
ブラウザの確認
http://192.168.71.129:89/

Node.js

Posted by arkgame