programming/javascript

[React] You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1).

chanchand 2023. 1. 8. 00:18
반응형
npx create-react-app .

react 다운로드 시 오류가 아래와 같이 발생한다.

 

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

We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app

The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/

 

전역 설치를 제거한 후 재설치를 하면 된다.

npm uninstall -g create-react-app
npm i create-react-app
npx create-react-app .

 

반응형

'programming > javascript' 카테고리의 다른 글

[Next.js] client side rendering vs pre-rendering  (0) 2023.02.01
[Next.js] component  (0) 2023.02.01
Location 객체  (0) 2023.01.19
자바스크립트 기초  (0) 2023.01.15
[Next.js] 설치  (0) 2023.01.03