您必须使用诸如 esbuild 之类的打包程序,它将编译您的项目并将其所有依赖项与其一起打包,这样它们就不会被导入。这绕过了 ESM/CommonJS 不兼容问题。
如果你不耐烦,可以直接看这个示例实现的代码。
在周末准备发布我的新项目 Token.js 时,我遇到了一个非常令人沮丧的问题。我希望我的包除了 ESM 之外还支持 CommonJS,但我有纯粹的 ESM 依赖项。纯粹的 ESM 斗士们可能对我这么说很不高兴,但如果你正在构建一个 NPM 包并希望它被广泛使用,你仍然需要在 2024 年支持 CommonJS。
Token.js 是一个简单的 TypeScript SDK,允许您集成来自 9 个不同提供商(OpenAI、Anthropic、Cohere 等)的 60 个 LLM。无耻的插件,如果你喜欢生成人工智能,请检查一下并告诉我你的想法。
现在有很多在线资源讨论如何为 ESM、CommonJS 或两者构建 Javascript 项目。然而,我特别难以处理这样一个事实:我有纯 ESM 的依赖项。我发现这很难处理,因为我不熟悉捆绑程序(我主要从事 Web 应用程序后端),并且无法找到有关该主题的良好指南。
因此,如果其他人遇到此问题,这里是解决方案。
我们将使用 esbuild 作为捆绑器。
yarn add esbuild --save-dev
我们需要一个简单的构建脚本来运行 esbuild 并输出结果。
import esbuild from 'esbuild' const entrypoint = "" const tsconfig = " " const build = async () => { await Promise.all([ // bundle for commonjs esbuild.build({ entryPoints: [entrypoint], bundle: true, minify: true, format: 'cjs', outfile: `./dist/index.cjs`, platform: 'node', treeShaking: true, tsconfig, }), ]) } build()
使用您首选的运行时运行。
"scripts": { "build": "vite-node ./scripts/build.ts", }
我个人很喜欢vite-node。因此,如果您想完全遵循,则需要安装:
yarn add vite-node --save-dev
yarn build
这将导致使用 esbuild 构建您的项目,您将看到一个新文件 dist/index.cjs,它是您的包的 CommonJS 构建。
更新您的 package.json 以指向您的 CommonJS 入口点。
"main": "dist/index.cjs",
嘭!现在,您已经为 CommonJS 构建了包。即使您有 ESM 依赖项,这也将起作用,因为依赖项将被捆绑
连同您的包裹。
由于调用 esbuild 时存在字段“bundle: true”,因此依赖项包含在输出中。
虽然技术上不需要,但您很可能还需要 TypeScript 声明,遗憾的是 esbuild 目前无法输出这些声明。所以生成
那些,你会想要使用普通的 tsc。
将这些选项添加到 tsconfig.json 文件将导致仅输出 TypeScript 声明。这正是我们想要的,因为包的其余部分
正在使用 esbuild 构建。
"declaration": true, "declarationDir": "./dist", "emitDeclarationOnly": true
"scripts": { "build:tsc": "yarn tsc -p tsconfig.json", "build": "vite-node ./scripts/build.ts && yarn build:tsc", }
本指南建议仅为您的包输出单个 CommonJS 入口点。就我个人而言,我认为这是最好的选择,原因有两个:
然而,这不是唯一的选择。您还可以使用 CommonJS 和 ESM 的双入口点发布包。
import esbuild from 'esbuild' const entrypoint = "" const tsconfig = " " const build = async () => { await Promise.all([ // bundle for commonjs esbuild.build({ entryPoints: [entrypoint], bundle: true, minify: true, format: 'cjs', outfile: `./dist/index.cjs`, platform: 'node', treeShaking: true, tsconfig, }), // bundle for ESM esbuild.build({ entryPoints: [entrypoint], bundle: true, minify: true, format: 'esm', outfile: `./dist/index.js`, platform: 'node', treeShaking: true, tsconfig, }), ]) } build()
"main": "dist/index.cjs", "module": "dist/index.js", "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } },
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3