Bun 在 import.meta
对象上提供了一些模块特定的实用工具。使用 import.meta.main
检查当前文件是否为当前进程的入口点。
if (import.meta.main) {
// this file is directly executed with `bun run`
} else {
// this file is being imported by another file
}
查看 文档 > API > import.meta 获取完整文档。
Bun 在 import.meta
对象上提供了一些模块特定的实用工具。使用 import.meta.main
检查当前文件是否为当前进程的入口点。
if (import.meta.main) {
// this file is directly executed with `bun run`
} else {
// this file is being imported by another file
}
查看 文档 > API > import.meta 获取完整文档。
HTTP
包管理器
将 bun install 与 Artifactory 一起使用
配置 git 以区分 Bun 的 lockb lockfile
在 GitHub Actions 中使用 Bun 安装依赖项
读取文件
运行时
流
将 ReadableStream 转换为 Uint8Array
将 ReadableStream 转换为 ArrayBuffer
将 Node.js Readable 转换为 Uint8Array
实用工具