react에서 npm install redux react-redux로 리덕스를 설치하는 도중 아래의 오류가 발생했습니다.
오류 메시지
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "react-redux" under a package
npm ERR! also called "react-redux". Did you name your project the same
npm ERR! as the dependency you're installing?
npm ERR!
npm ERR! For more information, see:
npm ERR! <https://docs.npmjs.com/cli/install#limitations-of-npms-install-algorithm>
오류 해결
- 문제는 프로젝트 이름을 제가 react-redux 라고 설정해서, package.json 파일내의 name이 redux-redux 되어있었습니다.
- 그래서 package.json 파일 안의 name을 다른 것으로 수정해주었습니다. -> 오류 해결 완료
//before
"name": "react-redux",
//after
"name": "react-redux-practice",
반응형
'개발 > React' 카테고리의 다른 글
[react] pagination 구현 (ft. react-js-pagination) (0) | 2021.07.25 |
---|---|
[react] Redux 예제 (ft. 미들웨어, Redux-thunk, Redux-devtools) (0) | 2021.07.18 |
[react] POST url/[object%20Object] 404 (Not Found) 오류 해결 (2) | 2021.07.09 |
[react] Property 'x' does not exist on type '{}'.ts 오류 해결 (0) | 2021.07.07 |
[react] Cannot assign to 'i' because it is a constant 오류 해결 (0) | 2021.07.04 |
댓글