
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
buffer-group
Advanced tools
Group Node.js Buffers together and extract the parts you need. This is useful, for example, when dealing with framing data and the frame size isn't known in advance.
Get access to the BufferGroup:
var BufferGroup = require('buffer-group'),
bg = new BufferGroup();
Add buffers to the group:
bg.push(new Buffer(10)); // bg.length === 10
bg.push(new Buffer(5)); // bg.length === 15
As you add Buffers to the group, the BufferGroup length grows accordingly to account for all the buffers in it.
You can then extract a fixed size of data from the group:
var eb = bg.extract(12); // Extract 12 bytes from the BufferGroup.
// eb.length === 12
// bg.length === 3
Note that the BufferGroup will remove the number of bytes requested and keep any existing data there.
You can then go ahead and push more data in or extract more data as you see fit. The length
property
should reflect the current size.
npm install buffer-group
npm test
MIT License
FAQs
Group Node.js Buffers together and extract the parts you need.
The npm package buffer-group receives a total of 2 weekly downloads. As such, buffer-group popularity was classified as not popular.
We found that buffer-group demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.