launch iOS apps into the iOS Simulator from the command line (Xcode 8.0+)
npm install ios-sim



ios-sim
==========
sh-session
$ npm install -g ios-sim
$ ios-sim COMMAND
running command...
$ ios-sim (-v|--version|version)
ios-sim/9.0.0 darwin-x64 node-v10.18.1
$ ios-sim --help [COMMAND]
USAGE
$ ios-sim COMMAND
...
`
Commands
* ios-sim install APPLICATIONPATH
* ios-sim launch APPLICATIONPATH
* ios-sim showdevicetypes
* ios-sim showsdks
* ios-sim startios-sim install APPLICATIONPATHInstall the application at the specified path to the iOS Simulator without launching the app
`
USAGE
$ ios-sim install APPLICATIONPATHARGUMENTS
APPLICATIONPATH the path to the application to launch
OPTIONS
-d, --devicetypeid=devicetypeid The id of the device type that should be simulated (Xcode6+). Use 'showdevicetypes'
to list devices.
-l, --log=log The path where log of the app running in the Simulator will be redirected to
-v, --verbose Enable verbose output
-x, --exit Exit after startup
--debug=debug Debug level output
`_See code: src/commands/install.js_
ios-sim launch APPLICATIONPATHLaunch the application at the specified path in the iOS Simulator
`
USAGE
$ ios-sim launch APPLICATIONPATHARGUMENTS
APPLICATIONPATH the path to the application to launch
OPTIONS
-a, --args=args arguments to pass in to the launched app
-d, --devicetypeid=devicetypeid The id of the device type that should be simulated (Xcode6+). Use 'showdevicetypes'
to list devices.
-l, --log=log The path where log of the app running in the Simulator will be redirected to
-s, --setenv=setenv environment variables to pass in as key value pairs
-v, --verbose Enable verbose output
-x, --exit Exit after startup
--debug=debug Debug level output
`_See code: src/commands/launch.js_
ios-sim showdevicetypesList the available device types
`
USAGE
$ ios-sim showdevicetypesOPTIONS
-l, --log=log The path where log of the app running in the Simulator will be redirected to
-v, --verbose Enable verbose output
-x, --exit Exit after startup
--debug=debug Debug level output
`_See code: src/commands/showdevicetypes.js_
ios-sim showsdksList the available iOS SDK versions
`
USAGE
$ ios-sim showsdksOPTIONS
-l, --log=log The path where log of the app running in the Simulator will be redirected to
-v, --verbose Enable verbose output
-x, --exit Exit after startup
--debug=debug Debug level output
`_See code: src/commands/showsdks.js_
ios-sim startLaunch the iOS Simulator without an app
`
USAGE
$ ios-sim startOPTIONS
-d, --devicetypeid=devicetypeid The id of the device type that should be simulated (Xcode6+). Use 'showdevicetypes'
to list devices.
-l, --log=log The path where log of the app running in the Simulator will be redirected to
-v, --verbose Enable verbose output
-x, --exit Exit after startup
--debug=debug Debug level output
``_See code: src/commands/start.js_