개발라이프/React

1-1. 우분투(Ubuntu22.04) Node JS 및 React-app 만들기

상상상상라이프 2022. 10. 20. 13:01

1. node JS 설치

명령어 : sudo apt-get install nodejs

명령어 : sudo apt-get install npm

2. 설치확인

명령어 : node -v

명령어 : npm -v

3. react 설치

명령어 : sudo apt-get install build-essential

명령어 : npm install -g crteate-react-app

명령어 create-react-app my-app(프로젝트 명)

명령어 : npm init

명령어 : npm start

4. 확인

IP:3000

접속성공!!!

참조 : https://i5i5.tistory.com/285