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 3 years have passed since last update.

React開発環境構築(Ubuntu18.04LTS)

Posted at

#node.js npmのインストール

node.jsとnpmをインストールする

$ sudo apt install -y nodejs npm

nをインストール

$ sudo npm install n -g

$ sudo n stable

最初に入れた古い nodejs, npm の設定ファイルを消す。そして再ログイン。

$ sudo apt purge -y nodejs npm

$ exec $SHELL -l

node.jsのバージョンを確認する

$ node -v 

#create-react-appのインストール

$ sudo npm install -g create-react-app

>/usr/local/bin/create-react-app -> /usr/local/lib/node_modules/create-react-app/index.js
+ create-react-app@3.0.1
added 91 packages from 45 contributors in 1.799s
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?