The Notifications API lets a web page or app send notifications that are displayed outside the page at the system level; this lets web apps send information to a user even if the application is idle or in the background. This article looks at the basics of using this API in your own apps.
Typically, system notifications refer to the operating system's standard notification mechanism: think for example of how a typical desktop system or mobile device broadcasts notifications.
The system notification system will vary of course by platform and browser, but this is ok, and the Notifications API is written to be general enough for compatibility with most system notification systems.
One of the most obvious use cases for web notifications is a web-based mail or IRC application that needs to notify the user when a new message is received, even if the user is doing something else with another application. Many real examples of this now exist, such as Slack.
We've written a real world demo to give more of an idea of how web notifications can be used:
.
Before an app can send a notification, the user must grant the application the right to do so. This is a common requirement when an API tries to interact with something outside a web page — at least once, the user needs to specifically grant that application permission to present notifications, thereby letting the user control which apps/sites are allowed to display notifications.
You can check to see if you already have permission by checking the value of the Notification.permission
read only property. It can have one of three possible values:
default
granted
denied
If permission to display notifications hasn't been granted yet, the application needs to use the Notification.requestPermission()
method to request this from the user. In its simplest form, we just include the following:
Notification.requestPermission().then(function(result) { console.log(result); });
This uses the promise-version of the method, as supported in recent implementations (Firefox 47, for example.) If you want to support older versions, you might have to use the older callback version, which looks like this:
Notification.requestPermission();
The callback version optionally accepts a callback function that is called once the user has responded to the request to display permissions (as seen in the second else ... if
block below.) Commonly, you'll ask for permission to display notifications when your app is first initialized, and before trying to instantiate any. If you wanted to be really thorough, you could use a construct like the following (see To-do List Notifications):
function notifyMe() { // Let's check if the browser supports notifications if (!("Notification" in window)) { alert("This browser does not support system notifications"); } // Let's check whether notification permissions have already been granted else if (Notification.permission === "granted") { // If it's okay let's create a notification var notification = new Notification("Hi there!"); } // Otherwise, we need to ask the user for permission else if (Notification.permission !== 'denied') { Notification.requestPermission(function (permission) { // If the user accepts, let's create a notification if (permission === "granted") { var notification = new Notification("Hi there!"); } }); } // Finally, if the user has denied notifications and you // want to be respectful there is no need to bother them any more. }
Note: Before version 37, Chrome doesn't let you call Notification.requestPermission()
in the load
event handler (see issue 274284).
In Chrome 62 and newer you cannot request notification api at all unless the site is https:// secured. (see issue 779612) If you do have https on the site you should be able to use notifications and background push notifications.
Creating a notification is easy; just use the Notification
constructor. This constructor expects a title to display within the notification and some options to enhance the notification such as an icon
or a text body
.
For example, in the to-do-list example we use the following snippet to create a notification when required (found inside the createNotification()
function):
var img = '/to-do-notifications/img/icon-128.png'; var text = 'HEY! Your task "' + title + '" is now overdue.'; var notification = new Notification('To do list', { body: text, icon: img });
Firefox and Safari close notifications automatically after a few moments (around four seconds). This may also happen at the operating system level. Some browsers don't however, such as Chrome. To make sure that the notifications close in all browsers, you can call the Notification.close
function inside a setTimeout()
function to close the notification after 4 seconds. Also note the use of bind()
to make sure the close()
call is associated with the notification.
setTimeout(notification.close.bind(notification), 4000);
Note: When you receive a "close" event, there is no guarantee that it's the user who closed the notification. This is in line with the specification, which states: "When a notification is closed, either by the underlying notifications platform or by the user, the close steps for it must be run."
The notifications API spec lists four events that are triggered on the Notification
instance:
click
close
error
show
These events can be tracked using the onclick
, onclose
, onerror
, and onshow
handlers. Because Notification
also inherits from EventTarget
, it's possible to use the addEventListener()
method on it.
It is usually undesirable for a user to receive a lot of notifications in a short space of time — for example, what if a messenger application notified a user for each incoming message, and they were being sent a lot? To avoid spamming the user with too many notifications, it's possible to modify the pending notifications queue, replacing single or multiple pending notifications with a new one.
To do this, it's possible to add a tag to any new notification. If a notification already has the same tag and has not been displayed yet, the new notification replaces that previous notification. If the notification with the same tag has already been displayed, the previous notification is closed and the new one is displayed.
Assume the following basic HTML:
<button>Notify me!</button>
It's possible to handle multiple notifications this way:
window.addEventListener('load', function () { // At first, let's check if we have permission for notification // If not, let's ask for it if (window.Notification && Notification.permission !== "granted") { Notification.requestPermission(function (status) { if (Notification.permission !== status) { Notification.permission = status; } }); } var button = document.getElementsByTagName('button')[0]; button.addEventListener('click', function () { // If the user agreed to get notified // Let's try to send ten notifications if (window.Notification && Notification.permission === "granted") { var i = 0; // Using an interval cause some browsers (including Firefox) are blocking notifications if there are too much in a certain time. var interval = window.setInterval(function () { // Thanks to the tag, we should only see the "Hi! 9" notification var n = new Notification("Hi! " + i, {tag: 'soManyNotification'}); if (i++ == 9) { window.clearInterval(interval); } }, 200); } // If the user hasn't told if he wants to be notified or not // Note: because of Chrome, we are not sure the permission property // is set, therefore it's unsafe to check for the "default" value. else if (window.Notification && Notification.permission !== "denied") { Notification.requestPermission(function (status) { // If the user said okay if (status === "granted") { var i = 0; // Using an interval cause some browsers (including Firefox) are blocking notifications if there are too much in a certain time. var interval = window.setInterval(function () { // Thanks to the tag, we should only see the "Hi! 9" notification var n = new Notification("Hi! " + i, {tag: 'soManyNotification'}); if (i++ == 9) { window.clearInterval(interval); } }, 200); } // Otherwise, we can fallback to a regular modal alert else { alert("Hi!"); } }); } // If the user refuses to get notified else { // We can fallback to a regular modal alert alert("Hi!"); } }); });
See the live result below:
When a user clicks on a notification generated by an app, you will be notified of this event in two different ways, depending on the circumstance:
See this code snippet for an example of how to deal with this.
Specification | Status | Comment |
---|---|---|
Notifications API | Living Standard | Living standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 22
|
Yes | 22
|
No | 25 | 6 |
Available in workers | 45 | Yes | 41 | No | 32 | ? |
Secure contexts only | 62 | ? | ? | No | 49 | ? |
Notification() constructor |
22
|
Yes | 22
|
No | 25 | 6 |
actions |
53 | 18 | No | No | 39 | ? |
badge |
53 | 18 | No | No | 39 | ? |
body |
Yes | ? | Yes | No | ? | ? |
data |
Yes | ? | Yes | No | ? | ? |
dir |
Yes | ? | Yes | No | ? | ? |
icon |
22
|
? | 22
|
No | 25 | No |
image |
53 | 18 | No | No | 40 | ? |
lang |
Yes | ? | Yes | No | ? | ? |
maxActions |
Yes | 18 | No | No | ? | ? |
onclick |
Yes | ? | No | No | ? | ? |
onclose |
Yes | ? | Yes | No | ? | ? |
onerror |
Yes | ? | No | No | ? | ? |
onshow |
Yes | ? | Yes | No | ? | ? |
permission |
Yes | ? | Yes | No | ? | ? |
renotify |
50 | No | No | No | 37 | No |
requireInteraction |
Yes | 17 | No | No | ? | ? |
silent |
43 | 17 | No | No | 30 | No |
tag |
Yes | ? | Yes | No | ? | ? |
timestamp |
Yes | 17 | No | No | ? | ? |
title |
Yes | ? | No | No | ? | ? |
vibrate |
53 | No | No | No | 39 | ? |
close |
Yes | ? | Yes | No | ? | ? |
requestPermission |
46 | ? | 47 | No | 40 | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | Yes | ? | 22
|
Yes | No | ? |
Available in workers | No | 45 | Yes | 41 | 32 | No | ? |
Secure contexts only | No | 62 | ? | ? | 49 | No | ? |
Notification() constructor |
No | Yes | ? | 22
|
Yes | No | ? |
actions |
No | 53 | No | No | 39 | No | ? |
badge |
No | 53 | No | No | 39 | No | ? |
body |
No | Yes | ? | Yes | ? | No | ? |
data |
No | Yes | ? | Yes | ? | No | ? |
dir |
No | Yes | ? | Yes | ? | No | ? |
icon |
No | Yes | ? | 22
|
Yes | No | ? |
image |
No | 53 | ? | No | 40 | No | ? |
lang |
No | Yes | ? | Yes | ? | No | ? |
maxActions |
No | Yes | ? | No | ? | No | ? |
onclick |
No | Yes | ? | No | ? | No | ? |
onclose |
No | Yes | ? | Yes | ? | No | ? |
onerror |
No | Yes | ? | No | ? | No | ? |
onshow |
No | Yes | ? | Yes | ? | No | ? |
permission |
No | Yes | ? | Yes | ? | No | ? |
renotify |
No | 50 | No | No | 37 | No | ? |
requireInteraction |
No | Yes | 17 | No | ? | No | ? |
silent |
No | 43 | 17 | No | 30 | No | ? |
tag |
No | Yes | ? | Yes | ? | No | ? |
timestamp |
No | Yes | 17 | No | ? | No | ? |
title |
No | Yes | ? | No | ? | No | ? |
vibrate |
No | 53 | No | No | 39 | No | ? |
close |
No | Yes | ? | Yes | ? | No | ? |
requestPermission |
No | 46 | ? | Yes | 40 | No | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Notifications_API/Using_the_Notifications_API