React

[React] create-react-app 설치 오류

joy_lee 2022. 3. 28. 16:08

전에 한번 해봤던 기억을 가지고 npm install create-react-app을 실행하면 아래와 같은 명령어가 나온다.

 

You are running `create-react-app` 4.0.2, which is behind the latest release (4.0.3).

 

create-react-app의 설치 방법이 바꼈기 때문이다.

* npm을 통해 create-react-app 을 설치했던 경우, 터미널에 npm uninstall -g create-react-app 을 입력해 삭제부터 해줘야 한다.

 

설치를 원하는 곳에 create-react-app을 바로 실행한다

npx create-react-app my-app

react 문서에는 npm init create-... 명령어도 소개하고 있는데 npx로 실행한 경우만 잘 설치됐다. npm init...으로 안되면 npx로 실행하는 것을 추천한다.

 

my-app은 만들고자 하는 app의 이름으로, 원하는 이름으로 바꿀 수 있다.

my-app으로 명령어를 실행하고 나면 my-app이라는 폴더가 새로 생성되며, 안에 create-react-app을 사용할 수 있는 모듈 및 파일들이 설치된 것을 확인할 수 있다.

 

npm start

npm start를 실행하면 만들어진 app을 확인할 수 있다.

 

 

참고한 사이트

https://create-react-app.dev/docs/getting-started/

 

Getting Started | Create React App

Create React App is an officially supported way to create single-page React

create-react-app.dev