-
npx create-react-app 에러front-end/React 2024. 1. 5. 17:16728x90
1. create-react-app 에러
npx create-react-app my-app npm ERR! code ENOENT npm ERR! syscall lstat npm ERR! path C:\-주소값- npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\-주소값-' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent
2. create-react-app 제거 후 재설치
npm uninstall -g create-react-app npm install -g create-react-app
3. create-react-app 재실행
npx create-react-app my-app
728x90'front-end > React' 카테고리의 다른 글
npm xlsx vulnerabilities(취약점) 해결 방법 (0) 2024.02.07 React HTTP GET, POST, PATCH, DELETE 사용법 (0) 2024.02.06 리액트 로그인 유효성 검사 방법 3가지 (0) 2023.10.30 React Redux state 변경하기 (0) 2023.10.15 React Redux 설치, 세팅, 사용하기 (0) 2023.10.15