/** Send individualised notifications i.e. Account updates for users with one-or-more device tokens */ const apn = require('@parse/node-apn'); const users = [ { name: 'Wendy', devices: ['', ''] }, { name: 'John', devices: [''] }, ]; const service = new apn.Provider({ cert: 'certificates/cert.pem', key: 'certificates/key.pem', }); Promise.all( users.map(user => { const note = new apn.Notification(); note.alert = `Hey ${user.name}, I just sent my first Push Notification`; // The topic is usually the bundle identifier of your application. note.topic = ''; console.log(`Sending: ${note.compile()} to ${user.devices}`); return service.send(note, user.devices).then(result => { console.log('sent:', result.sent.length); console.log('failed:', result.failed.length); console.log(result.failed); }); }) ).then(() => { // For one-shot notification tasks you may wish to shutdown the connection // after everything is sent, but only call shutdown if you need your // application to terminate. service.shutdown(); });