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

ubuntu18.04にnode12系とnpm6系をインストールする

$
0
0

実行環境

  • OS:ubuntu 18.04

前提条件

  • 特に無し

実施手順

公式のREADME.mdに従ってコマンドを実行するだけです。

node12系を指定し、インストール。

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

以上です。

結果確認

Node.js のバージョン

$ node -v
v12.16.2

npm のバージョン

$ npm -v
6.14.4

まとめ

公式のREADME.mdの手順をそのまま実行しただけでした。


Viewing all articles
Browse latest Browse all 8691

Trending Articles