我正在为Node.js使用Molecularr微服务框架。现在,我需要使用ES6 import
而不是require
。
例如
const { abc } = require("../../index.js"); **// This is working well.** <br>
import { abc } from "../../index.js"; **// This isn't working and throw the error.**
我遇到类似 Unexpected token import
的错误。
我还安装了Babel(JavaScript编译器)。
您对此有任何想法吗?
谢谢