Warning: main(): unterminated entity reference _ol\]\:list-outside ol{list-style-position:outside}.\[\&_ol\]\:list-decimal ol{list-style-type:decimal}.\[\&_ol\]\:pl-4 ol{padding-left:1rem}.\[\&_ul\]\:list-outside ul{list-style-position:outside}.\[\&_ul\]\:list-disc ul{list-style-type:disc}.\[\&_ul\]\:pl-4 ul{padding-left:1rem} in /home/feelan/public_html/ir.apponweb.api/tools/agfdsjafkdsgfkyugebhekjhevbyujec.php on line 264
Convert an ArrayBuffer to a Buffer | Bun Examples
Bun

GuidesBinary data

Convert an ArrayBuffer to a Buffer with Bun

The Node.js Buffer API predates the introduction of ArrayBuffer into the JavaScript language. Bun implements both.

Use the static Buffer.from() method to create a Buffer from an ArrayBuffer.

const arrBuffer = new ArrayBuffer(64);
const nodeBuffer = Buffer.from(arrBuffer);

To create a Buffer that only views a portion of the underlying buffer, pass the offset and length to the constructor.

const arrBuffer = new ArrayBuffer(64);
const nodeBuffer = Buffer.from(arrBuffer, 0, 16); // view first 16 bytes

See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.