
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Pack multibyte binary values into buffers with specific endiannesses. Based on the original Put by https://github.com/substack/node-put ...this version is intended to be a little more conventional in structure and faster to instantiate and easier for a VM to optimize. Instantiation of this version is more that 500x faster than the original as measured on nodejs 0.10.12.
To install with npm:
npm install bufferput
To run the tests with expresso:
expresso
Build a buffer
#!/usr/bin/env node
var BufferPut = require('bufferput');
var buf = BufferPut()
.word16be(1337)
.word8(1)
.pad(5)
.put(new Buffer('pow', 'ascii'))
.word32le(9000)
.buffer()
;
console.log(buf);
Output: <Buffer 05 39 01 00 00 00 00 00 70 6f 77 28 23 00 00>
Send a buffer to a writeable stream
#!/usr/bin/env node
var BufferPut = require('bufferput');
Put()
.word16be(24930)
.word32le(1717920867)
.word8(103)
.write(process.stdout)
;
Output: abcdefg
FAQs
Pack multibyte binary values into buffers
The npm package bufferput receives a total of 22,996 weekly downloads. As such, bufferput popularity was classified as popular.
We found that bufferput 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.