0

我正在为 Node.js 使用分子微服务框架。现在,我需要使用 ES6import而不是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 编译器)。

你对此有什么想法吗?

谢谢,

4

0 回答 0