2
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.

Ubuntu16.04にnodejsをインストール

Posted at

##はじめに
Ubuntu16.04にnodeJsのインストール手順を書きます。

##nodejsのインストール

$ sudo apt install -y nodejs npm
$ sudo npm cache clean
$ sudo npm install n -g
$ sudo n 10.16.0
$ sudo ln -sf /usr/local/bin/node /usr/bin/node

##バージョン確認

$ node -v

##導入済みのNode.js、npmを削除

$ sudo apt-get purge -y nodejs npm

##おわりに
以上がインストール手順です。この記事がだれかの役にたったら幸いです。
nodejsは無名関数だったり、変数の型が決まっていなかったり、javaに
慣れていた私からすると「使いずらい。。。」イメージでしたが、
使ってみると必要なモジュールを楽に持ってこれたり便利なこともあって
最近は愛着が湧いてきました。これからももっと使いこなして可愛いがれる
くらいになりたいと思います。

2
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
2
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?