Skip to content

Deploy .IPA package to iOS device with a NodeJs CLI

Notifications You must be signed in to change notification settings

JotaFerreira/ipa-deploy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ipa-deploy

Deploy .ipa package to iOS device

Dependency

  • Mac OS
  • ios-deploy, use it to install .app to iOS device, install it: [sudo] npm install -g ios-deploy
  • unzip, use it to unzip .ipa file.

Install

[sudo] npm install -g ipa-deploy

How To Use

ipa-deploy <path_to_ipa_file>

Example:

ipa-deploy myapp.ipa

How It Works

Here are the steps that the tool actualy runs:

# unzip the IPA file to tmp folder
mkdir ./tmp
cd ./tmp
unzip <path_to_ipa_file>

# run ios-deploy to install the app into iOS device
ios-deploy -b ./Payload/*.app

# clean up the tmp folder
cd ..
rm -r ./tmp

Credits

A simple tool created by Raymond Xie, to install IPA package with command line.

Any comments are welcome.

About

Deploy .IPA package to iOS device with a NodeJs CLI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%