(node:17584) ExperimentalWarning: The ESM module loader is experimental. internal/modules/run_main.js:54internalBinding('errors').triggerUncaughtException(
(node:17584) ExperimentalWarning: The ESM module loader is experimental. internal/modules/run_main.js:54 internalBinding('errors').triggerUncaughtException( ES6 최신 문법인 import ~ from ~ 을 사용하려고 했는데 위와 같은 에러가 났다. 이리 찾아본 결과 package.json 에서 "type": "module", 을 추가 해야 했다. 이제 실행 해보자. 에러 없이 실행이 되었다
2020.12.27