Bun

指南实用工具

使用 Bun 获取当前文件的目录

Bun 在 import.meta 对象上提供了一些特定于模块的实用工具。

/a/b/c.ts
import.meta.dir; // => "/a/b"

请参阅 文档 > API > import.meta 以获取完整文档。