본문 바로가기

react error4

React npx create-react-app You are running `create-react-app` 4.0.0, which is behind the latest release (4.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/gettin.. 2022. 4. 5.
[React] npx create-react-app 설치오류 "We no longer support global installation of Create React App" 요새 도커로 개발하고 왠만한 개발환경들인 사전에 설치되어있어서 오랜만에 새프로젝트나 공부하려고 하다보니 설치오류가 종종발생한다 이처럼 버전문제가 항상 발생하는데 이때 발생하는 문제를 가볍게 해결할수 있는 방법을 몇가지 메모하고자한다. 방법 1. 1 2 npx clear-npx-cache cs 방법 2. 1 npx create-react-app@5.0.0 my-app cs 이 두가지 명령어를 사용하면 왠만한 설치 문제 오류는 해결될것이다. 2022. 2. 14.
[React] type arguments' can only be used in a .ts file. [8011] 종종 React Native 앱을 실행할경우 Syntax 문법에러가 나타난다. 로그내용이 제목과 같이 나타난다면 대부분 다음과 같이 하면 해결될것이다. 1. 확장 프로그램 탭으로 이동. 2. Show Built-in Extensions 3. TypeScript and JavaScript Languate Features 설치. 4. 실행 및 오류해결. 2019. 11. 7.
[React] React error : 'react-scripts'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. React Project를 실행할때 가끔 yarn을 실행할떄 문제가 발생한다. 그러면 다음과 같은 방법으로 해결할 수 있다. npm run start " react-scripts'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. " 라는 에러메세지를 볼수 있다 그럴경우 다음과 같은 명령어를 통해 해결할수 있다. npm update npm start 2019. 10. 31.