8000 GitHub - mape/node-notifo: Send push notifications to your iPhone for free using node.js and notifo.com
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mape/node-notifo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
    }
});

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0