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

https://github.com/pthm/ipa-data

Node module for reading metadata from an IPA file
https://github.com/pthm/ipa-data

Last synced: 8 months ago
JSON representation

Node module for reading metadata from an IPA file

Awesome Lists containing this project

README

          

# ipa-data
A node module for reading metadata from an IPA file

`npm install ipa-data`

## Usage
```javascript
var ipaData = require('ipa-data')

ipaData('path/to/ipa.ipa', function(err, metadata){
if(err){
throw err;
}
console.log(metadata);
})

```