25
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS 7 に Node.js をインストールする手順

Last updated at Posted at 2019-09-21

Node.js には公式レポジトリがある。詳しくは README 参照。

以下では、執筆時での安定版 (10.x)をインストールする。

sudo -i で管理者になっておくと便利。

レポジトリの作成

# curl -sL https://rpm.nodesource.com/setup_10.x | bash -

インストール

# yum install nodejs

確認

$ node -v
$ npm -v

npm を最新版にアップデート

# npm update -g

確認

$ npm -v
25
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?