Latest Code

This commit is contained in:
Dobie Wollert
2015-04-06 03:28:20 -04:00
parent 966152a631
commit d3089dcd17
105 changed files with 8731 additions and 96 deletions

21
node_modules/pushover-notifications/test/test_multi.js generated vendored Normal file
View File

@ -0,0 +1,21 @@
var push = require( '../lib/pushover.js' );
var p = new push( {
// user: process.env['PUSHOVER_USER'],
token: process.env['PUSHOVER_TOKEN'],
debug: true
});
var msg = {
message: 'omg node test',
title: "Well - this is fantastic",
user: process.env['PUSHOVER_USER']
};
// console.log( p );
p.send( msg, function( err, result ) {
console.log( err );
console.log( result );
process.exit(0);
});