Bun

指南实用工具

检测代码何时使用 Bun 执行

有条件地检测代码是否使用 bun 执行的推荐方法是检查是否存在 Bun 全局变量。

这类似于您检查 window 变量是否存在以检测代码是否在浏览器中执行的方式。

if (typeof Bun !== "undefined") {
  // this code will only run when the file is run with Bun
}

在 TypeScript 环境中,除非全局安装了 bun-types,否则以前的方法将导致类型错误。为了避免这种情况,您可以改为检查 process.versions

if (process.versions.bun) {
  // this code will only run when the file is run with Bun
}