Bun

指南实用工具

使用 Bun 获取当前入口点的绝对路径

Bun.main 属性包含当前入口点的绝对路径。

foo.ts
index.ts
foo.ts
console.log(Bun.main);
index.ts
import "./foo.ts";

打印的路径对应于使用 bun run 执行的文件。

bun run index.ts
/path/to/index.ts
bun run foo.ts
/path/to/foo.ts

请参阅 文档 > API > 实用工具 以获取更多有用的实用工具。