node로 코드 실행 시 아래 에러 발생
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
node.js에서 import, export와 같은 ES 모듈을 사용하려면 package.json 파일 설정을 통해 전체 파일에 적용해야 함.
package.json에 "type": "module" 값을 추가 한다.
//package.json
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
}
[GCP] Cloudfunction 초기 설정 및 프로젝트 이동 (0) | 2022.02.17 |
---|---|
[JS] 숫자 더하기 (0) | 2022.02.17 |
[nodejs] 비동기 처리 - async, await (0) | 2022.02.09 |
[nodejs] Parameter null check (0) | 2022.02.09 |
티스토리에 Github 마크다운 적용하기 (0) | 2022.01.11 |
댓글 영역