Displaying desktop notifications to the user.
npm install ngBrowserNotification
/* Creating module with dependency */
angular.module('myApp', ['notification'])
.controller('MyCtrl', ['$scope', 'notification', function ($scope, notification) {
/* Notification title, message and icon */
notification('New message', 'Notification body', 'path/to/icon.png');
}]);