Bun

指南实用工具

使用 Bun 检查当前文件是否为入口点

Bun 在 import.meta 对象上提供了一些模块特定的实用工具。使用 import.meta.main 检查当前文件是否为当前进程的入口点。

index.ts
if (import.meta.main) {
  // this file is directly executed with `bun run`
} else {
  // this file is being imported by another file
}

查看 文档 > API > import.meta 获取完整文档。