Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-notificationcenter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-notificationcenter

iOS NSNotificationCenter Bridge

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

cordova-plugin-notificationcenter

NPM

Cordova plugin

Bridge between iOS NSNotificationCenter and JavaScript.

There are tons of native notifications broadcasted by various components from the iOS SDK. Sometimes it can be useful to observe them from the JavaScript side.

:warning: This plugin does not handle pushNotifications or localNotifications. This is not the purpose.

Usage

Add specific observers :

cordova.plugins.notificationCenter.addObserver('NSManagingContextDidSaveChangesNotification',function(){
  console.log('NSManagingContextDidSaveChangesNotification has been sent');
});

cordova.plugins.notificationCenter.addObserver('UIDeviceOrientationDidChangeNotification',function(){
  console.log('UIDeviceOrientationDidChangeNotification has been sent');
});

Remove a specific observer :

cordova.plugins.notificationCenter.removeObserver('NSManagingContextDidSaveChangesNotification');

Remove all the added observers :

cordova.plugins.notificationCenter.removeAllObservers();

Enter the debug mode in order to observe all native notifications ( :warning: do not use this in production ! It's a performance killer ) :

cordova.plugins.notificationCenter.startDebug();

License

MIT © Alexis Kofman

Keywords

FAQs

Package last updated on 16 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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