New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pushover-notifications

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pushover-notifications - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

4

lib/pushover.js

@@ -53,2 +53,6 @@ var https = require( 'https' ),

o.headers = {
'Content-Length': req_string.length
};
var req = https.request( o, function( res ) {

@@ -55,0 +59,0 @@ if ( self.debug ) {

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Pushover API for node.js",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "http://github.com/qbit/node-pushover",

@@ -8,0 +8,0 @@ "repository": {

@@ -1,4 +0,5 @@

# pushover
Send pushover notifications from Node.JS
![Pushover](https://pushover.net/assets/pushover-header-0f47af8e08d8bef658a999a9e6584fcc.png)
Send [pushover.net](http://pushover.net) notifications from Node.JS
## Usage

@@ -8,3 +9,3 @@

npm install pushover
npm install pushover-notifications

@@ -15,7 +16,7 @@ ## Examples

var push = require( '../lib/pushover.js' );
var push = require( 'pushover-notifications' );
var p = new push( {
user: '',
token: ''
user: process.env['PUSHOVER_USER'],
token: process.env['PUSHOVER_TOKEN'],
});

@@ -22,0 +23,0 @@

var push = require( '../lib/pushover.js' );
var p = new push( {
user: '',
token: '',
user: process.env['PUSHOVER_USER'],
token: process.env['PUSHOVER_TOKEN'],
debug: true

@@ -7,0 +7,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc