Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

buffer-alloc

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buffer-alloc

A [ponyfill](https://ponyfill.com) for `Buffer.alloc`.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.9M
decreased by-1.67%
Maintainers
1
Weekly downloads
 
Created

What is buffer-alloc?

The buffer-alloc package is a utility for allocating buffer memory in Node.js. It provides a way to create a buffer of a specified size filled with zeros or another specified value. This is particularly useful in scenarios where you need to ensure that newly allocated memory does not contain old or sensitive data. It mimics the Buffer.alloc method introduced in Node.js v5.10.0, offering a polyfill for older versions of Node.js or an alternative method for newer versions.

What are buffer-alloc's main functionalities?

Allocating a buffer filled with zeros

This feature allows for the creation of a new buffer of a specified size, with each byte initialized to zero. It's useful for when you need a clean buffer with no pre-existing data.

const bufferAlloc = require('buffer-alloc');
const buffer = bufferAlloc(10); // creates a 10-byte buffer filled with zeros

Allocating a buffer filled with a specific value

This feature enables the creation of a buffer where each byte is initialized to a specific value provided by the user. This can be useful for initializing a buffer to a non-zero state for specific use cases.

const bufferAlloc = require('buffer-alloc');
const buffer = bufferAlloc(10, 0x1); // creates a 10-byte buffer filled with 0x1

Other packages similar to buffer-alloc

Keywords

FAQs

Package last updated on 22 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc