An open API service indexing awesome lists of open source software.

https://github.com/lucasbento/get-ios-devices

Get a list of iOS devices and simulators
https://github.com/lucasbento/get-ios-devices

devices ios nodejs simulators

Last synced: 22 days ago
JSON representation

Get a list of iOS devices and simulators

Awesome Lists containing this project

README

          

get-ios-devices



Get a list of iOS devices and simulators.




## Install

```sh
yarn add get-ios-devices
```

## Usage

```js
const iOSDevices = require('get-ios-devices');

const devices = iOSDevices();
/*
devices = [
{
availability: 'available',
state: 'Booted',
isAvailable: true,
name: 'iPhone X',
udid: 'FA43D7DC-91C7-4707-8208-485D94C1FD0C',
availabilityError: '',
version: '12.1'
}
]
*/
```

## License

MIT © [Lucas Bento](https://github.com/lucasbento)