create-react-app

    npx create-react-app 실행시 "We no longer support global installation of Create React App"이 발생

    1. 들어가는 글 오랜만에 개발하려고 하니까 죽겠다. 거두절미하고 해당 오류는 create-react-app을 전역으로 설치해놓아서 발생하는 오류이다. 글로벌로 설치된 모듈을 삭제하자. npm uninstall -g create-react-app yarn global remove create-react-app 이후에 create-react-app을 다시 로컬로 설치한다. add create-react-app 이제 create-react-app으로 프로젝트를 설치할 수 있게 되었다. create-react-app의 리액트 프로젝트를 바로 할 수 있다는 장점이 있지만, 이렇게 설치하는 경우 node_modules가 이중으로 중첩되어 생긴다는 문제점이 있다. 최상위폴더 ㄴnode_modules (방금 우리가 ..