新版本进一步支持 - 图1

common.cjs

// 如果需要在 type=module 的情况下继续使用 CommonJS, // 需要将文件扩展名修改为 .cjs const path = require(‘path’) console.log(path.join(__dirname, ‘foo’))

index.js

// Node v12 之后的版本,可以通过 package.json 中添加 type 字段为 module, // 将默认模块系统修改为 ES Module // 此时就不需要修改文件扩展名为 .mjs 了 import { foo, bar } from ‘./module.js’ console.log(foo, bar)