https://github.com/nirsky/ideviceinstaller-js
NodeJs wrapper for ideviceinstaller
https://github.com/nirsky/ideviceinstaller-js
Last synced: about 1 year ago
JSON representation
NodeJs wrapper for ideviceinstaller
- Host: GitHub
- URL: https://github.com/nirsky/ideviceinstaller-js
- Owner: nirsky
- License: mit
- Created: 2016-09-01T08:07:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T11:13:04.000Z (over 5 years ago)
- Last Synced: 2025-03-05T18:48:25.781Z (about 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ideviceinstaller-js
NodeJs wrapper for ideviceinstaller.
For use on OSX.
## Getting Started
First, make sure you have ideviceinstaller installed, if you don't you can get it with brew, simply run in you Terminal:
```
brew install ideviceinstaller
```
Install package with npm:
```
npm install ideviceinstaller-js --save
```
## Usage
import the module:
```
var ideviceinstaller = require('ideviceinstaller-js')
```
Note: Providing the device uuid is optional.
* ideviceinstaller.installApp
```javascript
ideviceinstaller.installApp('path/to/appFile.app/ipa','my-device-udid')
```
* ideviceinstaller.uninstallApp
```javascript
ideviceinstaller.uninstallApp('myapp.bundle.id','my-device-udid')
```
* ideviceinstaller.reinstallApp
Will try to uninstall first then install
```javascript
ideviceinstaller.reinstallApp('path/to/appFile.app/ipa','myapp.bundle.id','my-device-udid')
```