美文网首页前端大讲堂
如何在 Nodejs 中用上 ESModules

如何在 Nodejs 中用上 ESModules

作者: 前端大课堂 | 来源:发表于2019-10-10 09:56 被阅读0次

    就写个例子, 

    math.mjs 

    export default (a, b) => {

      return a + b;

    }

    index.mjs

    import add from './math.mjs'

    let ret = add(1, 2)

    console.log(ret)

    node --experimental-modules index.mjs 

    相关文章

      网友评论

        本文标题:如何在 Nodejs 中用上 ESModules

        本文链接:https://www.haomeiwen.com/subject/xwlopctx.html