dev/nodejs
nodejs - Cannot use import statement outside a module
wlrn566
2023. 7. 22. 20:26
nodejs에서 나름 MVC패턴으로 구조를 변경하고 있는데 "Cannot use import statement outside a module" 라는 오류가 떴다.
import 구문이 commonjs에서는 사용되지 않고 es6에서 사용하는 것이기 때문이었다.
package.json 파일에 type필드를 "module"로 지정해줘야 했다.
이 type필드에 값이 없거나 commonjs이면 commonjs이므로 "module"로 명시해주고 es6방식을 사용하면 된다.
const express = require('express');
// 아래 import구문으로 변경됨
import { Router } from 'express';