notifo

0.0.2 • Public • Published

node-notifo

Send push notifications to your iPhone for free using node.js and notifo.com;

Installation

Via npm:

$ npm install notifo

Requires

Account on http://notifo.com/ (free).

Usage

var Notifo = require('notifo');

var notification = new Notifo({
    'username': 'yourNotifoUsername'
    , 'secret': 'yourNotifoApiSecret'
});

notification.send({
    'title': 'node-notifo test'
    , 'uri': 'http://github.com/mape/node-notifo'
    , 'msg': 'With URI and title.'
}, function(err, response) {
    if (err) {
        throw err
    } else {
        console.log(response);
    }
});

Readme

Keywords

none

Package Sidebar

Install

npm i notifo

Weekly Downloads

1

Version

0.0.2

License

none

Last publish

Collaborators

  • mape