Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Buffer and serialization utilities for javascript.
const assert = require('assert');
const bio = require('bufio');
const bw = bio.write();
bw.writeU64(100);
bw.writeString('foo', 'ascii');
const data = bw.render();
const br = bio.read(data);
assert(br.readU64() === 100);
assert(br.readString('ascii') === 'foo');
const bio = require('bufio');
class MyStruct extends bio.Struct {
constructor() {
super();
this.str = 'hello';
this.value = 0;
}
write(bw) {
bw.writeVarString(this.str, 'ascii');
bw.writeU64(this.value);
return this;
}
read(br) {
this.str = br.readVarString('ascii');
this.value = br.readU64();
return this;
}
}
const obj = new MyStruct();
console.log('Buffer:');
console.log(obj.encode());
console.log('Decoded:');
console.log(MyStruct.decode(obj.encode()));
console.log('Hex:');
console.log(obj.toHex());
console.log('Decoded:');
console.log(MyStruct.fromHex(obj.toHex()));
console.log('Base64:');
console.log(obj.toBase64());
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work. </legalese>
See LICENSE for more info.
FAQs
Buffer and serialization utilities for javascript
The npm package bufio receives a total of 67,657 weekly downloads. As such, bufio popularity was classified as popular.
We found that bufio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.