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
- Host: GitHub
- URL: https://github.com/pthm/ipa-data
- Owner: pthm
- License: mit
- Created: 2015-07-07T00:12:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-07T00:54:49.000Z (almost 11 years ago)
- Last Synced: 2025-09-10T10:41:29.070Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
})
```