Files
bun-src/docs/guides/util/import-meta-path.mdx
2026-08-27 21:09:14 +00:00

16 lines
452 B
Plaintext

---
title: Get the absolute path of the current file
sidebarTitle: import.meta.path
mode: center
---
Bun provides a handful of module-specific utilities on the [`import.meta`](/runtime/module-resolution#import-meta) object. Use `import.meta.path` to retrieve the absolute path of the current file.
```ts /a/b/c.ts icon="/icons/typescript.svg"
import.meta.path; // => "/a/b/c.ts"
```
---
See [`import.meta`](/runtime/module-resolution#import-meta).