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

# 获取当前 Bun 版本

以语义化版本格式获取当前的 Bun 版本。

```ts index.ts icon="https://mintcdn.com/bun-zhcndoc/cnUTwgMuf4cCrwC-/icons/typescript.svg?fit=max&auto=format&n=cnUTwgMuf4cCrwC-&q=85&s=e7767043c9e885c34f2d6c8fe2a95217" theme={"theme":{"light":"github-light","dark":"dracula"}}
Bun.version; // => "1.3.3"
```

***

获取编译此 Bun 二进制文件所用的 [`oven-sh/bun`](https://github.com/oven-sh/bun) 的确切 `git` 提交。

```ts index.ts icon="https://mintcdn.com/bun-zhcndoc/cnUTwgMuf4cCrwC-/icons/typescript.svg?fit=max&auto=format&n=cnUTwgMuf4cCrwC-&q=85&s=e7767043c9e885c34f2d6c8fe2a95217" theme={"theme":{"light":"github-light","dark":"dracula"}}
Bun.revision; // => "49231b2cb9aa48497ab966fc0bb6b742dacc4994"
```

***

查看更多有用的工具，请参见 [文档 > API > Utils](/runtime/utils)。
