# ipa-extract-exec

> Extract the executable from an IPA

Latest version **0.1.4** (published 2018-09-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install ipa-extract-exec
pnpm add ipa-extract-exec
yarn add ipa-extract-exec
bun add ipa-extract-exec
```

Provides the command `ipa-extract-exec`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2018-09-05 |
| First published | 2016-05-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >8.0.0 |
| Dependencies | 4 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 4 |
| Author | dweinstein |
| Maintainers | dweinstein |
| Keywords | ipa, executable, extract, encrypted |

## Links

- npm: https://www.npmjs.com/package/ipa-extract-exec
- Repository: https://github.com/nowsecure/ipa-extract-exec
- Homepage: https://github.com/nowsecure/ipa-extract-exec#readme
- Issues: https://github.com/nowsecure/ipa-extract-exec/issues
- npm.io page: https://npm.io/package/ipa-extract-exec

## Dependencies (4)

- [tmp](https://npm.io/package/tmp.md) 0.0.33
- [yauzl](https://npm.io/package/yauzl.md) ^2.10.0
- [ipa-extract-info](https://npm.io/package/ipa-extract-info.md) ^1.2.5
- [macho-is-encrypted](https://npm.io/package/macho-is-encrypted.md) ^0.1.2

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 0.1.4 (latest) — 2018-09-05
- 0.1.2 — 2016-09-30
- 0.1.1 — 2016-05-24
- 0.1.0 — 2016-05-15
- 0.0.2 — 2016-05-02
- 0.0.1 — 2016-05-02

## README

# SYNOPSIS

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

```js
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

---
_Source: https://npm.io/package/ipa-extract-exec · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
