본문 바로가기
오류 해결

[ error ] npx create-react-app 에러 Unexpected token '.' when run create-react-app

by 질서정연_ 2023. 4. 25.

 

아 이걸 한번 겪은 적이 있었는데 안 적어놓으니까 방법을 까먹어서 또 헤맸다 ..ㅡㅡ 

내 시간.. 이제 절때 안 잊어먹으려고 글을 쓴다.

 

만약 노드 버전이 16.14.2 같은 16버전이라면 저런 에러가 난다 .

 

nvm 으로 노드 버전을 바꿔주자

nvm list

: 사용가능한 노드 리스트를 보여준다.

 

nvm use 14.17.0 

사용가능 한 노드 버전 중 한 버전을 nvm use 뒤에 적어준다. 

 

그럼 노드 버전이 바뀌고 npx create-react-app --template typescript가 잘 실행된다!

 

 

 

https://stackoverflow.com/questions/71259175/unexpected-token-when-run-create-react-app

 

Unexpected token '.' when run create-react-app

I am trying to create a new React app using this command on Windows using Node 16.14 npx create-react-app my-app But it fails with this error npm ERR! Unexpected token '.' From the log, this is the...

stackoverflow.com

 

댓글