Socket
Socket
Sign inDemoInstall

node-idevice

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-idevice

Install apps on your ios device. Node wrapper around ideviceinstaller.


Version published
Weekly downloads
39K
decreased by-7.73%
Maintainers
2
Weekly downloads
 
Created
Source

node-idevice

Install apps to your ios device with node.

This project depends on ideviceinstaller from the libimobiledevice project. The currently preferred way of obtaining the binary is to use brew.

brew install ideviceinstaller

You can then tell node-idevice to use the command:

// Use executable found in your $PATH
var device = new IDevice();

// Or you can manually set the executable
var device = new IDevice(false, {cmd: './path/to/ideviceinstaller'});

If you want to build the binary yourself you can try:

./utils/steps

This should pull and build all the dependencies. Be warned this is pretty long.

We currently support installing, removing and listing apps on a device.

Installing

var ipa = path.resolve(__dirname, '../path/to/your/App.ipa');
device.install(ipa, function (err) {
	// Do stuff when app is installed
});

// If you want to be sure the callback executes with the app on device you can use
device.installAndWait(ipa, 'domain.organisation.App', function (err, success) {
    // Do stuff when app is on device and ready
})

Note

ideviceinstaller consumes IPA packages, please see the docs on how to get an IPA from your App.

Removing

device.remove('domain.organisation.App', function (err) {
	// Do stuff when app is installed
});

Checking if an app is Installed

device.isInstalled(appName, function (err, installed) {
	// Installed is true when app is found on device
});

Listing Installed apps

device.listInstalled(function (err, data) {
	// data is a list of objects, one per app
	// The object contains info about the app, currently 'name' and 'fullname'
});

Keywords

FAQs

Package last updated on 27 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc