Create React App은 복잡한 설정없이 리액트 앱을 만들어주는 편리한 라이브러리입니다.
리액트 입문 단계에서 Create React App을 활용해 리액트 앱을 생성하는 과정에서 쉽게 아래와 같은 에러 메시지를 만나게 됩니다.
이렇게 입력했는데?
npx create-react-app . //.는 현재 폴더를 의미
이런 오류 메시지가 나옵니다?!
npm ERR! code ENOENT
npm ERR! syscall lstat
npm ERR! path C:\Users\skishin\AppData\Roaming\npm
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\Users\skishin\AppData\Roaming\npm'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
해결책은,
지우고 다시 깔면 됩니다! (컴퓨터 껐다 키면 해결되는 것과 같네요...)
npm uninstall -g create-react-app //Create React App 지우기
npm install -g create-react-app //Create React App 설치하기
모두 완료되었으면, 설치하고자 하는 폴더에서 다시 리액트 앱을 생성해주세요.
npx create-react-app .
'Study > React' 카테고리의 다른 글
폰트 어썸(Font Awesome) 사용하기 (0) | 2024.04.26 |
---|