ipa-extract-exec

0.1.4 • Public • Published

SYNOPSIS

Extract the executable from an IPA file along with helpful meta data.

var fs = require('fs');
var extract = require('ipa-extract-exec');
var encryptedSync = require('macho-is-encrypted').path

var fd = fs.openSync(__dirname + '/Foo.ipa', 'r');

extract(fd, function (err, tmpPath, name, plist, origFile) {
  if (err) throw err;
  const encrypted = encryptedSync(tmpPath)
  console.log(`${name} (${plist.CFBundleIdentifier}) is ${encrypted}`)
});

LICENSE

MIT

Package Sidebar

Install

npm i ipa-extract-exec

Weekly Downloads

0

Version

0.1.4

License

MIT

Unpacked Size

3.72 kB

Total Files

4

Last publish

Collaborators

  • dweinstein