IDeviceList
When we connect our apple devices via usb, we get the model number, not other basic details such as generation, storage, color etc. I made this small utility that will get you all required basic details for apple devices.
Install instruction
use npm or yarn
npm add idevicelist --save
or
yarn add idevicelist
Import lib
import { getAllDevices, searchByModel, searchByType } from 'idevicelist';
Call the functions
const device = searchByModel('MM9P3');
API Reference
Get all devices
getAllDevices()
Get device by model
searchByModel(MODEL)
MODEL | string | Required. Model of device to fetch |
get devices by type
searchByType(TYPE)
TYPE | string | Required. Type of devices to fetch |
Roadmap
Contributing
Contributions are always welcome!
See contributing.md for ways to get started.
Please adhere to this project's code of conduct.