본문 바로가기
개발/에러해결

SyntaxError: Unexpected token '<'

by amkorousagi 2022. 10. 22.

에러 내용


SyntaxError: Unexpected token '<'

SyntaxError: Unexpected token '<'

 

 

에러 원인


그냥 node index로 실행하게 되면

JSX 문법을 js으로 compile 되지 않는다.

 

이를 담당하는 compiler인 react의 compile이 필요하다.

 

해결 방법


create-react-app 으로 프로젝트를 만들고

npm start로 실행하면 정상적으로 JSX가 compile 된다.

 

npx create-react-app my-app
cd my-app
npm start # not node index

 

참고 자료


 

 

Getting Started | Create React App

Create React App is an officially supported way to create single-page React

create-react-app.dev

 

댓글