import.meta
对象是模块访问自身信息的一种方式。它是 JavaScript 语言的一部分,但其内容并未标准化。每个“宿主”(浏览器、运行时等)都可以自由地在 import.meta
对象上实现任何它希望的属性。
Bun 实现了以下属性。
import.meta.dir; // => "/path/to/project"
import.meta.file; // => "file.ts"
import.meta.path; // => "/path/to/project/file.ts"
import.meta.url; // => "file:///path/to/project/file.ts"
import.meta.main; // `true` if this file is directly executed by `bun run`
// `false` otherwise
import.meta.resolve("zod"); // => "file:///path/to/project/node_modules/zod/index.js"
import.meta.dir | 当前文件所在目录的绝对路径,例如 /path/to/project 。等同于 CommonJS 模块(和 Node.js)中的 __dirname |
import.meta.dirname | 与 import.meta.dir 的别名,为了 Node.js 兼容性 |
import.meta.env | 与 process.env 的别名。 |
import.meta.file | 当前文件的名称,例如 index.tsx |
import.meta.path | 当前文件的绝对路径,例如 /path/to/project/index.ts 。等同于 CommonJS 模块(和 Node.js)中的 __filename |
import.meta.filename | 与 import.meta.path 的别名,为了 Node.js 兼容性 |
import.meta.main | 指示当前文件是否为当前 bun 进程的入口点。文件是被 bun run 直接执行还是被导入? |
| 将模块标识符(例如
|
import.meta.url | 当前文件的 string URL,例如 file:///path/to/project/index.ts 。等同于 浏览器中的 import.meta.url |