PS D:\ReactPrj> npx create-react-app blog
npm ERR! code ENOENT
npm ERR! syscall lstat
npm ERR! path C:\Users\chaeros\AppData\Roaming\npm
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\Users\박찬호\AppData\Roaming\npm'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\chaeros\AppData\Local\npm-cache\_logs\2023-06-30T15_12_10_266Z-debug-0.log
리액트 프로젝트에 사용할 폴더에 PowerShell을 이용해 blog 폴더를 생성하려고 했으나 위와 같은 오류가 발생했다.
(해당 프로젝트 폴더를 Shift 누른 상태로 우클릭한 뒤 '여기에 PowerShell 창 열기'를 클릭했을 때)
<해결방법>
기존에 설치되어 있던 react-app을 삭제하고 다시 설치한다.
React가 업데이트되며 명령어들이 제대로 작동하지 않는 것으로 유추된다.
npm uninstall -g create-react-app //react-app 삭제
npm install -g create-react-app //react-app 재설치
npx create-react-app (생성할 폴더이름) //react-app 명령 실행
결과
npx create-react-app blog 명령어가 문제없이 실행되어 blog 폴더가 생성된 것을 확인할 수 있다.