Bun.main
属性包含当前入口点的绝对路径。
console.log(Bun.main);
import "./foo.ts";
打印的路径对应于使用 bun run
执行的文件。
bun run index.ts
/path/to/index.ts
bun run foo.ts
/path/to/foo.ts
查看 文档 > API > 实用工具 获取更多有用的实用工具。
Bun.main
属性包含当前入口点的绝对路径。
console.log(Bun.main);
import "./foo.ts";
打印的路径对应于使用 bun run
执行的文件。
bun run index.ts
/path/to/index.ts
bun run foo.ts
/path/to/foo.ts
查看 文档 > API > 实用工具 获取更多有用的实用工具。
HTTP
包管理器
将 bun install 与 Artifactory 一起使用
配置 git 以 diff Bun 的 lockb lockfile
在 GitHub Actions 中使用 Bun 安装依赖项
读取文件
运行时
流
将 ReadableStream 转换为 Uint8Array
将 ReadableStream 转换为 ArrayBuffer
将 Node.js Readable 转换为 Uint8Array
实用工具