
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
binary-version-reader
Advanced tools
If you're building firmware on the Particle Platform, you might be curious to see the metadata stored in your firmware! This module will read any metadata stored in the various modules (bootloader, system, user), and help you understand any dependencies.
If you're building firmware on the Particle Platform, you might be curious to see the metadata stored in your firmware! This module will read any metadata stored in the various modules (bootloader, system, user), and help you understand any dependencies.
const Reader = require('binary-version-reader').HalModuleParser;
const reader = new Reader();
reader.parseFile('your_binary.bin', function(fileInfo, err) {
console.log(fileInfo);
});
You can also get the raw output of binary-version-reader by using it as a command line tool without installing it.
npx binary-version-reader your_binary.bin
{
"filename": "/.../040_user-part.bin",
"fileBuffer": "<Buffer ...>",
"crc": {
"ok": 1,
"storedCrc": "b138f375",
"actualCrc": "b138f375"
},
"prefixInfo": {
"moduleStartAddy": "80a0000",
"moduleEndAddy": "80a128c",
"moduleVersion": 2,
"platformID": 6,
"moduleFunction": 5,
"moduleIndex": 1,
"depModuleFunction": 4,
"depModuleIndex": 2,
"depModuleVersion": 1
},
"suffixInfo": {
"productId": -1,
"productVersion": -1,
"fwUniqueId": "f9f552aa98d7e3eab750862a01743024a4d05514021598a4341b3d83b37eda36",
"reserved": 0,
"suffixSize": 36,
"crcBlock": "b138f375"
}
}
When you need to create a firmware binary for an integration test, you
can use the provided firmwareTestHelper
instead of relying on fixtures
in your application.
const { firmwareTestHelper, ModuleInfo } = require('binary-version-reader');
const binary = firmwareTestHelper.createFirmwareBinary({ productId: 123, productVersion: 6, platformId: 10, deps: [ { func: ModuleInfo.FunctionType.SYSTEM_PART, index: 1, version: 1210 } ] });
Packages are only released from the master
branch after peer review.
$ git checkout master
$ git pull
$ npm test
$ npm version <major|minor|patch>
$ git push origin main --follow-tags
FAQs
If you're building firmware on the Particle Platform, you might be curious to see the metadata stored in your firmware! This module will read any metadata stored in the various modules (bootloader, system, user), and help you understand any dependencies.
The npm package binary-version-reader receives a total of 385 weekly downloads. As such, binary-version-reader popularity was classified as not popular.
We found that binary-version-reader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.