Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itss0n1c/parse-ipa

Gather information about an IPA file.
https://github.com/itss0n1c/parse-ipa

bun ios ipa typescript

Last synced: about 1 month ago
JSON representation

Gather information about an IPA file.

Awesome Lists containing this project

README

        

# parse-ipa
### Gather information about an IPA file. Used In [IPA Installer API](https://ipa.s0n1c.ca).

Discord server
npm version
npm downloads

### Documentation live at https://s0n1c.ca/parse-ipa

## Installation

```zsh
% bun i parse-ipa
```

## Usage
`parse-ipa` is available via server-side (Bun & Node.js), as well as in browser.

**Note**: Browser only supports inputting a `Blob` object.

```ts
import { parse_ipa } from "parse-ipa";

let ipa = await parse_ipa(
"https://github.com/rileytestut/Delta/releases/download/v1.6/Delta_1_6.ipa"
);

console.log(ipa.name); // Delta
console.log(ipa.version); // 1.6
console.log(ipa.build); // 102
console.log(ipa.bundle_id); // com.rileytestut.Delta
```