A handy wrapper for using the Web Notifications API. Notify.js aims to simplify requesting user permission and associated Web Notification API events, as well as providing a few extra callbacks and convenience methods.
- Download: zip
- NPM:
npm install notifyjs
- Bower:
bower install notify.js
- Git:
git clone https://github.com/alexgibson/notify.js
This component can be used as an AMD module, CommonJS module, or a global.
define(['./notify'], function(Notify) {
var myNotification = new Notify();
// ...
});
var Notify = require('notifyjs');
To initialize a web notification create a new Notify
instance, passing the message title
as well as any other options you wish to use.
var myNotification = new Notify('Yo dawg!', {
body: 'This is an awesome notification',
notifyShow: onNotifyShow
});
function onNotifyShow() {
console.log('notification was shown!');
}
Then show the notification. It's a good idea to make sure that you have permissions to send notifications first.
if (Notify.needsPermission) {
Notify.requestPermission(onPermissionGranted, onPermissionDenied);
} else {
myNotification.show();
}
function onPermissionGranted() {
console.log('Permission has been granted by the user');
myNotification.show();
}
function onPermissionDenied() {
console.warn('Permission has been denied by the user');
}
- title (string) - notification title
- body: (string) - notification message body
- icon: (string) - path for icon to display in notification
- tag: (string) - unique identifier to stop duplicate notifications
- lang: (string) - BCP 47 language tag for the notification (default:
en
) - timeout: (integer) - number of seconds to close the notification automatically
- notifyShow: (function) - callback when notification is shown
- notifyClose: (function) - callback when notification is closed
- notifyClick: (function) - callback when notification is clicked
- notifyError: (function) - callback when notification throws an error
Notify.requestPermission(onPermissionGrantedCallback, onPermissionDeniedCallback)
- requests permission from the user if needed and handles permission callbacks.Notify.isSupported
- Boolean property to test for Web Notifications API browser supportNotify.needsPermission
- Boolean property to check if permission is needed for the user to receive notifications.Notify.permissionLevel
- shows the user's current permission level (granted, denied or default), returns null if notifications are not supported.
Prior to Chrome v37, Notification.requestPermission
could not be called on page load events, it required a user interaction such as a click
event. This has been fixed in current versions to be more consistent with other browsers, but please keep this in mind when writing your application. You can find out more in the Chromium bug for this issue.
Install Node. Testing relies on the Karma test-runner, which can be installed globally using the following command.
npm install -g karma
In the project root, to perform a single pass of the tests using Firefox run:
npm test
- Chrome (desktop)
- Safari
- Firefox
- Firefox OS (v1.2+)
- Firefox Mobile (Android)