We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just use npm to install jBinary and you are set :)
npm
jBinary
npm install jBinary
var fs = require('fs'); var jBinary = require('jBinary'); jBinary.loadData('file.bin', function (err, data) { var binary = new jBinary(data, { magic: ['array', 'uint8', 4] }); console.log(binary.read('magic')); });