스타 블로그

Cannot create a project named "VIW_Project" because of npm naming restrictions:

쿠카곰돌이 2023. 1. 6. 17:17
반응형

오류 증상 : 

Cannot create a project named "VIW_Project" because of npm naming restrictions:

위의 이름으로 프로젝트 생성 할 수 없다는 메시지 출력하며 React 프로젝트가 생성안됨

PS C:\myfront> npx create-react-app VIW_Project
npx: installed 67 in 3.632s
Cannot create a project named "VIW_Project" because of npm naming restrictions:

  * name can no longer contain capital letters

Please choose a different project name.

원인:

React 프로젝트 이름은 한글, 특수문자, 대문자가 포함되면 안됩니다.

 

해결방법 :

아래와 같이 프로젝트명을 소문자로 생성합니다.

npx create-react-app viw_project

 

반응형