0.1.2 • Published 10 years ago
crx-parser v0.1.2
node-crx-parser
CRX parser.
Installation
npm install crx-parser --save
Usage
var parseCRX = require('crx-parser');
fs.readFile('/tmp/mfabfdnimhipcapcioneheloaehhoggk.crx', function (err, buff) {
parseCRX(buff, function (err, data) {
console.log(data.header.publicKey);
...
});
});
For complete example see text/index.spec.js.