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

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

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

bun ios ipa typescript

Last synced: 4 months 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 does not support file system paths.

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

let ipa = await parse_ipa(
"https://github.com/NeoFreeBird/app/releases/download/2.2/NeoFreeBird-2.2-Twitter-11.35.ipa"
);

console.log(ipa.name); // Twitter
console.log(ipa.version); // 11.35
console.log(ipa.build); // 12
console.log(ipa.bundle_id); // com.atebits.Tweetie2
```