Front-end/React

리액트 설치 방법 - 리눅스

luana_eun 2021. 11. 15. 18:42
728x90

1. curl 설치

sudo apt install curl

2. PPA(개인아카이브) 등록하기

curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash -

3. 노드 설치하기, 버전 확인

sudo apt-get install -y nodejs node -v

4. npm 설치

curl -sL https://npmjs.org/install.sh | sh sudo npm update -g npm

5. create-react-app 설치

npm install -g create-react-app create-react-app 앱이름짓기 cd 앱이름 npm start

728x90