Confirmed users
964
edits
(→High Level Design: f) |
(→High Level Design: update) |
||
| Line 5: | Line 5: | ||
Push Notification contains the following technologies: | Push Notification contains the following technologies: | ||
==== Notification API==== | ==== Notification API ==== | ||
WebAPI landed in Fx22. Can be used without push and service workers, but will be a popular use case. | |||
https://developer.mozilla.org/en-US/docs/Web/API/notification | https://developer.mozilla.org/en-US/docs/Web/API/notification | ||
====Service Workers==== | ==== Service Workers ==== | ||
Service workers is the ability for your browser to run a script in the background enabling offline applications, background processing, and push notifications. | |||
https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker | https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker | ||
====Push WebAPI==== | ==== Push WebAPI ==== | ||
Web DOM API that enables a website to subscribe a client, upon granting permission, to send events to the client. | |||
https://developer.mozilla.org/en-US/docs/Web/API/Push_API | https://developer.mozilla.org/en-US/docs/Web/API/Push_API | ||
==== Push Server==== | ==== Push Server ==== | ||
Mozilla hosted server that brokers the registration and sending of push events from web app servers to clients. | |||
https://wiki.mozilla.org/Services/SimplePushServer | https://wiki.mozilla.org/Services/SimplePushServer | ||