
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
Binary parser with a fluent API.
var parse = require('..');
var parser = parse()
.readUInt8('string length')
.string('string', 'string length')
.readUInt8('field count')
.loop('fields', 2, function (loop) {
loop.readUInt8('some');
loop.readUInt8('numbers');
})
parser.on('data', console.log);
/*
{
"string length" : 3,
"string" : "foo",
"field count" : 2,
"fields" : [
{ "some" : 13, "numbers" : 37 },
{ "some" : 73, "numbers" : 31 }
]
}
*/
var buf = new Buffer(9);
buf.writeUInt8(3, 0); // string length
buf.write('foo', 1); // string
buf.writeUInt8(2, 4); // field count
buf.writeUInt8(13, 5); // fields[0].some
buf.writeUInt8(37, 6); // fields[0].numbers
buf.writeUInt8(73, 7); // fields[1].some
buf.writeUInt8(31, 8); // fields[1].numbers
parser.write(buf);
Create a new streaming parser.
Parse the given type with optional length and store in the results object under
name.
length can also be the name of a previously read field, e.g.:
parse()
.readUInt8('length')
.string('content', 'length');
Consume a chunk of binary data with the given length.
fn is called with the current chunk and offset and is expected to synchronously return the parsed Object/String/whatever, which then will be emitted under name in the results object.
In addition, fn is bound to the object containing the parsed data of the current chunk.
The example above written using next:
parse()
.next('foo', 3, function (chunk, offset) {
return chunk.toString('utf8', offset, offset + 3);
})
.next('bar', 3, function (chunk, offset) {
return chunk.toString('utf8', offset, offset + 3);
})
Read length buffers and store under name.
var parser = parse()
.readUInt8('count')
.loop('strings', 'count', function (loop) {
loop.string('value', 3);
});
parser.on('data', console.log);
// => { strings : [{ value : 'foo' }, { value : 'bar' }]}
var count = new Buffer(1); count.writeUInt8(1, 0); parser.write(count);
parser.write(new Buffer('foobar'));
With npm do
$ npm install barse
The MIT License (MIT)
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Binary parser with a fluent api
The npm package barse receives a total of 44,730 weekly downloads. As such, barse popularity was classified as popular.
We found that barse 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.