> ## 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.

# 将 Buffer 转换为 ArrayBuffer

Node.js 的 [`Buffer`](https://nodejs.org/api/buffer.html) 类查看和操作底层 `ArrayBuffer` 中的数据。`buffer` 属性返回该 `ArrayBuffer`。

```ts theme={null}
const nodeBuf = Buffer.alloc(64);
const arrBuf = nodeBuf.buffer;
```

***

参见 [二进制数据](/runtime/binary-data#conversion)。
