npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@robo-finance/cordova-push-delivery

v2.6.1

Published

This plugin allows your application to receive push notifications on Android, iOS and Windows devices. Android uses Firebase Cloud Messaging. iOS uses Apple APNS Notifications. Windows uses Microsoft WNS Notifications.

Readme

Description

A plugin that overrides the onMessageReceived() method of the phonegap-plugin-push package. It introduces a possibility to detect if notifications are enabled and push is received in foreground / background and sends a fallback POST request.

Only Android support right now.

How to install

cordova plugin add "phonegap-plugin-push"
cordova plugin add "@robo-finance/cordova-push-delivery"

How to use

  1. In the global configuration file config.xml, and add the tag inside plugin directive with the attribute name = DELIVERY_URL_KEY and the value attribute with its own value:
Example: DELIVERY_URL_KEY = delivery_url
<variable name="DELIVERY_URL_KEY" value="delivery_url"/>
  1. Kindly append value DELIVERY_URL_KEY (e.g. delivery_url) to firebase data on backend:
Example of data structure
{
	"data" : {
		"delivery_url": "https://localhost/set-read/886d27ee-f6fd-11e9-832d-362b9e155667"
	}
}

After push received and processed by phonegap-plugin-push in foreground/background, plugin will make POST request to http://localhost/set-read/886d27ee-f6fd-11e9-832d-362b9e155667 automatically. So, it doesn't need to write any Javascript code.

It is possible to detect if plugin is installed. No available methods in the CordovaPushDelivery object right now.

if (typeof window.CordovaPushDelivery !== 'undefined') {
    
}

How it works

Because on Android must be only one intent-filter per action the plugin use intent-filter priority to override phonegap-plugin's FCMService. After onMessageReceived received it call parent super.onMessageReceived(message), phonegap-plugin processes the notification and our plugin do the following:

  1. Checks that DELIVERY_URL_KEY (e.g. delivery_url) is present in firebase data.
  2. Checks if notifications are not blocked by the user, because they cannot be read.
  3. If debug mode it disables chrome's trust certificate feature (for example, to use in staging environment), affected only to current request.
  4. Sends POST callback to DELIVERY_URL_KEY (e.g. delivery_url) with empty body. You should set any notification_id or something like that to DELIVERY_URL_KEY (e.g. delivery_url), for example, https://localhost/set-read/886d27ee-f6fd-11e9-832d-362b9e155667