본문 바로가기

웹개발/에러 잡기

nodejs : unexpected token '...' Error! (three dot error)

 

AWS EC2에서 PM2를 돌리려는데 이런 에러가 떳다. 

 

오랜 삽질 끝에 원인을 알아냈는데...

 

Node JS의 Version이 너무 낮은게 문제다! 당시 내 nodeJS의 version은 7...이었다

 

node --version  명령어로 지금 내 노드가 버전 몇인지 알 수 있다.

 

https://phoenixnap.com/kb/update-node-js-version

 

How to Update Node.js to Latest Version {Linux, Windows, and MacOS}

New Node.js versions come out often! This guide shows you how to install the latest Node.js version on any Linux, Windows, or MacOS system. Follow our step-by-step tutorial and upgrade now.

phoenixnap.com

 

이 링크를 따라가서 노드를 업데이트하자. 그러면 문제가 해결된다!_!