New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

angular-notification-service

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-notification-service

Simple notification service for AngularJS application.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
6
50%
Maintainers
1
Weekly downloads
 
Created
Source

angular-notification-service

Simple notification service for AngularJS application

Why

Because there is no such service provided by AngularJS and at least me need it.

Installation

bower install --save angular-notification-service

Usage

Load script using <script> HTML tag like you do with angular.

<script src="assets/libs/angular-notification-service/notificationService.js"></script>

Add as reference to your application module.

angular.module('yourmodule', ['ng', 'angularNotification']);

Use it in directive, service, filter or controller:

Consumer

angular.module('yourmodule').controller('mycontroller', ['$scope', 'Notification', function($scope, Notification) {

  function onNotification(my, args, here) {
  }

  Notification.register('alerts', onNotification);
  
  $scope.$on('destroy', function(){ Notification.unregister('alerts', onNotification); });
}]);

Producer

angular.module('yourmodule').service('myalerts', ['Notification', function(Notification) {

  return {
    alert: function(my, args, here) {
      Notification.notify('alerts', my, args, here);
    }
  };

}]);

The 'alerts' string is a channel on which you can raise notification or listen to. Channels are created as soon as at least one consumer has registered a callback on.

FAQs

Package last updated on 11 May 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