Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8883

CentOS8にnode13をインストールする

$
0
0

概要

DiscordのbotをPythonからnodeで書き直したので、動かしていたサーバーにnodeを導入した。
デフォルトのnodeは10.19.0だったのでnodeのバイナリディストリビューションからインストーラーをダウンロードしてnode13をインストールした。

環境

  • CentOS8
  • node v13.14.0

インストール

nodeバイナリディストリビューション
https://github.com/nodesource/distributions

参考 : https://github.com/nodesource/distributions#rpminstall

nodeのインストール

$ sudo yum install curl
$ curl -sL https://rpm.nodesource.com/setup_13.x | sudo bash -
$ sudo yum install nodejs

% node -v
v13.14.0

% npm install -g npm

% npm -v
6.14.4

Viewing all articles
Browse latest Browse all 8883

Trending Articles