LoginSignup
0
1

More than 5 years have passed since last update.

Ubuntu上にReact開発環境を構築する(自分用)

Posted at

自宅PCに開発環境を構築する自分用の手順書です。
※あくまで自分用の手順書です。
OSはUbuntu 18.04 LTSです。

まずGitHub上にある自分の開発リポジトリをクローンするためにGitをインストールします。
その後、GitHubからリポジトリをクローンします。

sudo apt install git
cd 適切なディレクトリ
git clone リポジトリURL

Node.jsとnpmをインストールします。

sudo apt install nodejs
sudo apt install npm

プロジェクトのパッケージをインストールします。

cd プロジェクトのディレクトリ
npm install

起動!!!

npm start
0
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
0
1