1.0.0 • Published 8 years ago

node-icloud v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

node-icloud

A node iCloud module.

API

playSound()

Play sound on iPhone.

showDevices(callback)

Show all devices associated with the current iCloud account.

Usage

var iCloud = require('node-cloud');
var device = new iCloud('foobar@icloud.com', 'password');

device.playSound();

device.showDevices(function(devices) {
  console.log(devices);  // => [{ name: 'Brian’s MacBook Pro', deviceId: foobar123xyz' }]
});