Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

0
0

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.

Ubuntu 16.04 x64 に n を使用して Nodejs をインストールする

Posted at

#目的
nodejs の管理を n を使って行う
※参考サイトの内容を、自分に必要な部分のみメモとして抜粋
##nodejs とnpm のデフォルトパッケージのインストール
※apt-getでインストールしたNode.jsとnpmは、nをインストールするためだけに使用する
$ sudo apt-get install -y nodejs npm
##npmでnをインストール
※念のためnpmのキャッシュを削除してからnをインストールする
$ sudo npm cache clean
$ sudo npm install -g n
##nで任意のバージョンのNode.jsをインストール。
$ sudo n stable
$ sudo n lts
等詳細はnのREADME.mdを参照

apt-getでインストールしたnodejsとnpmをアンインストール

$ sudo apt-get purge -y nodejs npm
※この古いnpmをアンインストールしても、npmコマンドは継続して使える
$ ls /usr/local/bin
n node npm npx
その他の使い方はtj/n: Node version managementのREADME.mdを参照
##参考にしたのは以下のサイト
結局のところ node.js をサーバーにインストールするにはどうやればいいのか?
UbuntuにNode.jsをインストールするベストプラクティス

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Login to continue?

Login or Sign up with social account

Login or Sign up with your email address