在Node.js的微服务框架中使用ES6“导入”而不是“需要”

时间:2018-09-21 11:10:55

标签: javascript node.js ecmascript-6 microservices moleculer

我正在为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编译器)。

您对此有任何想法吗?

谢谢

0 个答案:

没有答案