> ## Documentation Index
> Fetch the complete documentation index at: https://bun.ll1025.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取当前 Bun 版本

`Bun.version` 包含当前 Bun 的 semver 格式版本号。

```ts index.ts icon="https://mintcdn.com/span-inc/82N53aP7NFbaCVSl/icons/typescript.svg?fit=max&auto=format&n=82N53aP7NFbaCVSl&q=85&s=787d39d6a7d96d7f9540dc74344eba23" theme={null}
Bun.version; // => "1.3.3"
```

***

`Bun.revision` 包含编译出此 Bun 二进制文件的 [`oven-sh/bun`](https://github.com/oven-sh/bun) 的确切 `git` 提交。

```ts index.ts icon="https://mintcdn.com/span-inc/82N53aP7NFbaCVSl/icons/typescript.svg?fit=max&auto=format&n=82N53aP7NFbaCVSl&q=85&s=787d39d6a7d96d7f9540dc74344eba23" theme={null}
Bun.revision; // => "49231b2cb9aa48497ab966fc0bb6b742dacc4994"
```

***

参见 [工具](/runtime/utils)。
