Bun

插件

Bun 提供了一个通用的插件 API,可以用于扩展运行时打包器

插件拦截导入并执行自定义加载逻辑:读取文件、转译代码等。它们可以用于添加对其他文件类型的支持,例如 .scss.yaml。在 Bun 打包器的上下文中,插件可以用于实现框架级功能,例如 CSS 提取、宏和客户端-服务器代码同位。

生命周期钩子

插件可以注册回调函数,以便在 bundle 的各个生命周期点运行

  • onStart():bundle 器启动 bundle 后运行一次
  • onResolve():在模块解析之前运行
  • onLoad():在模块加载之前运行。
  • onBeforeParse():在文件解析之前,在解析器线程中运行零拷贝原生插件。

参考

类型概述(完整类型定义请参考 Bun 的 bun.d.ts 文件)

type PluginBuilder = {
  onStart(callback: () => void): void;
  onResolve: (
    args: { filter: RegExp; namespace?: string },
    callback: (args: { path: string; importer: string }) => {
      path: string;
      namespace?: string;
    } | void,
  ) => void;
  onLoad: (
    args: { filter: RegExp; namespace?: string },
    defer: () => Promise<void>,
    callback: (args: { path: string }) => {
      loader?: Loader;
      contents?: string;
      exports?: Record<string, any>;
    },
  ) => void;
  config: BuildConfig;
};

type Loader = "js" | "jsx" | "ts" | "tsx" | "css" | "json" | "toml";

用法

插件被定义为一个简单的 JavaScript 对象,包含一个 name 属性和一个 setup 函数。

myPlugin.ts
import type { BunPlugin } from "bun";

const myPlugin: BunPlugin = {
  name: "Custom loader",
  setup(build) {
    // implementation
  },
};

这个插件可以在调用 Bun.build 时被传入 plugins 数组中。

await Bun.build({
  entrypoints: ["./app.ts"],
  outdir: "./out",
  plugins: [myPlugin],
});

插件生命周期

命名空间

onLoadonResolve 接受一个可选的 namespace 字符串。什么是命名空间?

每个模块都有一个命名空间。命名空间用于在转译后的代码中为导入添加前缀;例如,一个带有 filter: /\.yaml$/namespace: "yaml:" 的加载器会将从 ./myfile.yaml 的导入转换为 yaml:./myfile.yaml

默认命名空间是 "file",并且没有必要显式指定它,例如:import myModule from "./my-module.ts"import myModule from "file:./my-module.ts" 相同。

其他常用的命名空间有

  • "bun":用于 Bun 特有的模块(例如 "bun:test""bun:sqlite"
  • "node":用于 Node.js 模块(例如 "node:fs""node:path"

onStart

onStart(callback: () => void): Promise<void> | void;

注册一个回调函数,在 bundler 启动新的 bundle 时运行。

import { plugin } from "bun";

plugin({
  name: "onStart example",

  setup(build) {
    build.onStart(() => {
      console.log("Bundle started!");
    });
  },
});

回调函数可以返回一个 Promise。在 bundle 进程初始化后,bundler 会等待所有 onStart() 回调函数完成,然后继续。

例如

const result = await Bun.build({
  entrypoints: ["./app.ts"],
  outdir: "./dist",
  sourcemap: "external",
  plugins: [
    {
      name: "Sleep for 10 seconds",
      setup(build) {
        build.onStart(async () => {
          await Bunlog.sleep(10_000);
        });
      },
    },
    {
      name: "Log bundle time to a file",
      setup(build) {
        build.onStart(async () => {
          const now = Date.now();
          await Bun.$`echo ${now} > bundle-time.txt`;
        });
      },
    },
  ],
});

在上面的例子中,Bun 将等待第一个 onStart()(休眠 10 秒)完成,以及第二个 onStart()(将 bundle 时间写入文件)。

请注意,onStart() 回调函数(像其他生命周期回调函数一样)没有能力修改 build.config 对象。如果你想修改 build.config,你必须直接在 setup() 函数中进行。

onResolve

onResolve(
  args: { filter: RegExp; namespace?: string },
  callback: (args: { path: string; importer: string }) => {
    path: string;
    namespace?: string;
  } | void,
): void;

为了 bundle 你的项目,Bun 会遍历项目中所有模块的依赖树。对于每个导入的模块,Bun 实际上必须找到并读取该模块。“查找”部分被称为“解析”模块。

onResolve() 插件生命周期回调函数允许你配置模块如何被解析。

onResolve() 的第一个参数是一个对象,包含 filternamespace 属性。filter 是一个正则表达式,它在导入字符串上运行。实际上,这些允许你过滤你的自定义解析逻辑将应用于哪些模块。

onResolve() 的第二个参数是一个回调函数,对于 Bun 找到的每个与第一个参数中定义的 filternamespace 匹配的模块导入,该回调函数都会运行。

回调函数接收匹配模块的 *路径* 作为输入。回调函数可以为模块返回一个 *新路径*。Bun 将读取 *新路径* 的内容并将其解析为模块。

例如,将所有对 images/ 的导入重定向到 ./public/images/

import { plugin } from "bun";

plugin({
  name: "onResolve example",
  setup(build) {
    build.onResolve({ filter: /.*/, namespace: "file" }, args => {
      if (args.path.startsWith("images/")) {
        return {
          path: args.path.replace("images/", "./public/images/"),
        };
      }
    });
  },
});

onLoad

onLoad(
  args: { filter: RegExp; namespace?: string },
  defer: () => Promise<void>,
  callback: (args: { path: string, importer: string, namespace: string, kind: ImportKind  }) => {
    loader?: Loader;
    contents?: string;
    exports?: Record<string, any>;
  },
): void;

在 Bun 的 bundler 解析一个模块之后,它需要读取模块的内容并解析它。

onLoad() 插件生命周期回调函数允许你在模块被 Bun 读取和解析之前修改模块的 *内容*。

onResolve() 一样,onLoad() 的第一个参数允许你过滤此 onLoad() 调用将应用于哪些模块。

onLoad() 的第二个参数是一个回调函数,对于每个匹配的模块,在 Bun 将模块内容加载到内存 *之前*,该回调函数都会运行。

此回调函数接收匹配模块的 *路径*、模块的 *导入者*(导入该模块的模块)、模块的 *命名空间* 和模块的 *类型* 作为输入。

回调函数可以为模块返回一个新的 contents 字符串以及一个新的 loader

例如

import { plugin } from "bun";

const envPlugin: BunPlugin = {
  name: "env plugin",
  setup(build) {
    build.onLoad({ filter: /env/, namespace: "file" }, args => {
      return {
        contents: `export default ${JSON.stringify(process.env)}`,
        loader: "js",
      };
    });
  },
});

Bun.build({
  entrypoints: ["./app.ts"],
  outdir: "./dist",
  plugins: [envPlugin],
});

// import env from "env"
// env.FOO === "bar"

这个插件会将所有 import env from "env" 形式的导入转换为一个 JavaScript 模块,该模块导出当前环境变量。

.defer()

传递给 onLoad 回调函数的参数之一是一个 defer 函数。此函数返回一个 Promise,当所有 *其他* 模块都已加载时,该 Promise 将被解析。

这允许你延迟 onLoad 回调函数的执行,直到所有其他模块都已加载。

这对于返回依赖于其他模块的模块内容很有用。

示例:跟踪和报告未使用的导出
import { plugin } from "bun";

plugin({
  name: "track imports",
  setup(build) {
    const transpiler = new Bun.Transpiler();

    let trackedImports: Record<string, number> = {};

    // Each module that goes through this onLoad callback
    // will record its imports in `trackedImports`
    build.onLoad({ filter: /\.ts/ }, async ({ path }) => {
      const contents = await Bun.file(path).arrayBuffer();

      const imports = transpiler.scanImports(contents);

      for (const i of imports) {
        trackedImports[i.path] = (trackedImports[i.path] || 0) + 1;
      }

      return undefined;
    });

    build.onLoad({ filter: /stats\.json/ }, async ({ defer }) => {
      // Wait for all files to be loaded, ensuring
      // that every file goes through the above `onLoad()` function
      // and their imports tracked
      await defer();

      // Emit JSON containing the stats of each import
      return {
        contents: `export default ${JSON.stringify(trackedImports)}`,
        loader: "json",
      };
    });
  },
});

请注意,.defer() 函数目前有一个限制,即每个 onLoad 回调函数只能调用一次。

原生插件

Bun 的 bundler 如此快速的原因之一是它使用原生代码编写,并利用多线程并行加载和解析模块。

然而,用 JavaScript 编写的插件的一个限制是 JavaScript 本身是单线程的。

原生插件被编写为 NAPI 模块,并且可以在多个线程上运行。这使得原生插件比 JavaScript 插件运行得更快。

此外,原生插件可以跳过不必要的工作,例如将字符串传递给 JavaScript 所需的 UTF-8 -> UTF-16 转换。

以下是原生插件可用的生命周期钩子

  • onBeforeParse():在 Bun 的 bundler 解析文件之前,在任何线程上调用。

原生插件是 NAPI 模块,它们将生命周期钩子作为 C ABI 函数公开。

要创建原生插件,你必须导出一个 C ABI 函数,该函数与你要实现的原生生命周期钩子的签名匹配。

在 Rust 中创建原生插件

原生插件是 NAPI 模块,它们将生命周期钩子作为 C ABI 函数公开。

要创建原生插件,你必须导出一个 C ABI 函数,该函数与你要实现的原生生命周期钩子的签名匹配。

bun add -g @napi-rs/cli
napi new

然后安装这个 crate

cargo add bun-native-plugin

现在,在 lib.rs 文件中,我们将使用 bun_native_plugin::bun proc macro 来定义一个函数,它 将实现我们的原生插件。

这是一个实现 onBeforeParse 钩子的例子

use bun_native_plugin::{define_bun_plugin, OnBeforeParse, bun, Result, anyhow, BunLoader};
use napi_derive::napi;

/// Define the plugin and its name
define_bun_plugin!("replace-foo-with-bar");

/// Here we'll implement `onBeforeParse` with code that replaces all occurrences of
/// `foo` with `bar`.
///
/// We use the #[bun] macro to generate some of the boilerplate code.
///
/// The argument of the function (`handle: &mut OnBeforeParse`) tells
/// the macro that this function implements the `onBeforeParse` hook.
#[bun]
pub fn replace_foo_with_bar(handle: &mut OnBeforeParse) -> Result<()> {
  // Fetch the input source code.
  let input_source_code = handle.input_source_code()?;

  // Get the Loader for the file
  let loader = handle.output_loader();


  let output_source_code = input_source_code.replace("foo", "bar");

  handle.set_output_source_code(output_source_code, BunLoader::BUN_LOADER_JSX);

  Ok(())
}

以及在 Bun.build() 中使用它

import myNativeAddon from "./my-native-addon";
Bun.build({
  entrypoints: ["./app.tsx"],
  plugins: [
    {
      name: "my-plugin",

      setup(build) {
        build.onBeforeParse(
          {
            namespace: "file",
            filter: "**/*.tsx",
          },
          {
            napiModule: myNativeAddon,
            symbol: "replace_foo_with_bar",
            // external: myNativeAddon.getSharedState()
          },
        );
      },
    },
  ],
});

onBeforeParse

onBeforeParse(
  args: { filter: RegExp; namespace?: string },
  callback: { napiModule: NapiModule; symbol: string; external?: unknown },
): void;

此生命周期回调函数在 Bun 的 bundler 解析文件之前立即运行。

作为输入,它接收文件的内容,并且可以选择返回新的源代码。

此回调函数可以从任何线程调用,因此 napi 模块的实现必须是线程安全的。