Skip to content

Bun.main 屬性包含當前入口點的絕對路徑。

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

打印的路徑對應於使用 bun run 執行的文件。

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

請參閱 文檔 > API > Utils 獲取更多有用的工具函數。

Bun學習網由www.bunjs.com.cn整理維護