Método Node.js Buffer.alloc()

❮ Módulo de búfer


Ejemplo

Cree un objeto de búfer de 15 bytes:

var buf = Buffer.alloc(15);
console.log(buf);

Definición y uso

El método Buffer.alloc() crea un nuevo objeto de búfer del tamaño especificado.


Sintaxis

 Buffer.alloc(size, fill, encoding);

Valores paramétricos

Parameter Description
size Required. Specifies the size of the buffer
fill Optional. Specifies a value to fill the buffer with if specified, otherwise the buffer is filled with 0 (zero-filled)
encoding Optional. If the buffer values are strings, this parameter specifies the encoding, default encoding is utf8. Supported values are:
"ascii"
"utf8"
"utf16le"
"ucs2"
"base64"
"latin1"
"binary"
"hex"

Detalles técnicos

Valor devuelto: Ninguna
Versión de Node.js: 5.10.0

Más ejemplos

Ejemplo

Usando el parámetro de relleno:

var buf = Buffer.alloc(15, 'a');
console.log(buf);

❮ Módulo de búfer