从CommonJS动态导入ES模块

时间:2020-07-28 01:26:04

标签: javascript node.js typescript rollup

是否可以从CommonJS动态导入ES模块,而不必将文件扩展名更改为mjs,并且如果可能的话,可以使用旧的Node版本(V13之前的版本)?我正在创建一个CLI库,该库将从用户项目中动态导入文件,以基于这些文件自动生成一些代码。

// bin.ts
// This file will be transpiled to CommonJS
const loadResourceFile = async (url: string) => {
  const resource = await import(url);
  return resource.default;
}
...
// rollup.config.js
import typescript from 'rollup-plugin-typescript2';
import pkg from './package.json';

const commonOutputOptions = {
  banner: '#!/usr/bin/env node',
  preferConst: true,
  sourcemap: true,
};

export default {
  input: 'src/bin.ts',
  output: [
    {
      ...commonOutputOptions,
      file: pkg.main,
      format: 'cjs',
    },
    {
      ...commonOutputOptions,
      file: pkg.module,
      format: 'esm',
    },
  ],
  external: [...Object.keys(pkg.dependencies || {})],
  plugins: [typescript()],
  inlineDynamicImports: true,
};

// resource.js
// This file will be a ES module
import a from './a';

export default {
   a,
   b: 'y',
}

提前谢谢!

1 个答案:

答案 0 :(得分:1)

有可能使用vm(特别是this)和fs,尽管我建议您不要走这条路,因为如果您不这样做的话,它很快就会变得难以维护。小心点。

由于您的目标是也支持较旧的nodejs版本,因此建议您制作两个单独的捆绑包,这样就不会混淆CommonJS和ES模块。