
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
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 26,089 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.