LoginSignup
1
1

More than 5 years have passed since last update.

Ubuntu16.04にnpm / Node.js v6.xをインストール

Posted at

Ubuntuにnpm / Node.js v6.x をインストールする方法メモ。

基本的に以下の手順に従う。

Installing Node.js via package manager | Node.js

インストール

npmインストール
$ sudo apt-get install -y build-essential

$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get install -y nodejs
バージョン確認
$ npm --version
3.9.5
$ node --version
v6.2.2

プロキシ設定

[Node.js] npm の proxy と registry 設定 - Qiita

参考

Node.js v6.0 (Current) がリリースされました。 - from scratch

1
1
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
1
1