search
HomeTechnology peripheralsIt IndustryHow to Build Push Notifications for Web Applications

Improving user participation in web application: Detailed explanation of web push notifications

This article will explore how to improve the user experience of existing web applications by adding notification functions similar to native applications. We will explain in-depth the concept of web push notifications and gradually demonstrate how to integrate this feature in existing web applications, covering the current specification and browser support. The article was originally published in Sencha. Thanks to the partners who support SitePoint.

Core points:

  • Understanding the basics: Web push notifications allow web applications to send messages directly to user devices, even if the application is inactive.
  • Service worker registration: Service worker is responsible for handling push messages, must register when the page is loaded, and conduct appropriate browser support checks.
  • User subscription process: Key steps in receiving push notifications include obtaining user consent, generating push subscriptions through a browser, and sending this data to the application server.
  • Send push messages: Push messages should be encrypted and sent via HTTP POST requests, and use parameters such as TTL and urgency to manage delivery details.
  • Processing message and user interaction: Service workers process incoming push messages and manage user interactions, such as notification clicks and closings.
  • Unsubscription and subscription expiration: Provides methods for users to unnotify subscriptions and handles subscription lifecycle events, including expiration and renewal.

Web push notification protocol

The web push notification protocol is relatively new. It gives web applications a native application-like functionality, allowing them to receive push messages from the server at any time, even if the web application is not active or loaded into the browser. This allows you to interact with users at any time, prompting them to return to the app even if they are not using your app.

How to Build Push Notifications for Web Applications The commercial value of web push notifications is obvious: it can increase user engagement, thereby increasing the overall value of the application, because push notifications make your application more useful to users, improve the usability of web applications, and make us more useful to us. It's closer to developing a single web application for all platforms, rather than developing native applications for each platform.

Comparison of Web Push and WebSockets

Before getting into the technical details, let's first understand the difference between Web push and WebSockets. First, they have some common things: Web push and WebSockets are designed to enable real-time communication between web applications and application servers, and send real-time data and updates from application servers to web applications.

The following are their differences:

  • WebSockets Use only when the web page is loading and active. Web push notifications can be used at any time, including when the app is active, inactive, or unloaded, and when the browser is not active or even closed.
  • The data sent using web push must be encrypted, and the size of each message is limited (no greater than 4KB). There are also limits on the number of messages sent (the exact limit value depends on the browser). Some browsers (such as Chrome) may also require notifications to be displayed to the user every time they receive a message. When using WebSockets, you don't have any of these restrictions: you can send any number of unencrypted messages of any size and process them as needed; you can display notifications, silently update data in your app, or do nothing at all.
  • The general rules are: when the user interacts with the application, use WebSockets to send ordinary data updates to your web application; use Web push notifications to send important urgent messages that must be received immediately, regardless of whether the user is using your application at the time .

Technical concept

Let's take a look at the technical details of this technology. I will use a game with special rules, participants, and turn to explain these details. I will first describe participants in this game called "Web Push Notifications":

  • Web Application
  • Service workers
  • Browser
  • Application Server
  • Push server

Push server is a service implemented by browser manufacturers; it is a communication bridge between the application server and the browser. It is responsible for delivering messages from your application server to your browser.

Use game demo web push notifications

I will use a game to demonstrate how to add web push notifications to your app. The rules of this game are defined by multiple specifications provided by the World Wide Web Alliance and the Internet Engineering Task Force:

  • Communication between the browser and the web application or service worker associated with it is described in the Push API specification.
  • Displaying different types of notifications and notification processing is described in the Notifications API specification.
  • The communication between the application server and the push server is defined in the Web push protocol specification.
  • There are also some additional specifications that describe push message encryption and application server authentication, allowing your application server to prove that it is allowed to send messages to your users.

How to Build Push Notifications for Web Applications

Game round

I split the game into four rounds and explain the concept and goals of each round. I'll then show you how to implement each turn in your app.

Round 1: Service Worker Registration

Web push notifications require a service worker to process push messages, so the first round is to register your service worker. Only your web application and browser participate in this round. This round occurs when the page is loading.

The web application sends a request to register a service worker to the browser. If the service worker successfully registers, the browser will reply using the ServiceWorkerRegistration object.

How to Build Push Notifications for Web Applications

To implement this round, you need to add the following code to your web application:

if ('serviceWorker' in navigator) {
  if ('PushManager' in window) {
    navigator.serviceWorker.register('ServiceWorker.js').then(function(registration) {
      // 状态初始化
    }).catch(function() {
      // 错误处理
    });
  } else {
    // 错误处理
  }
} else {
  // 错误处理
}

First of all, we need to check whether the browser supports service workers. Then, we need to check whether the browser supports web push notifications. With browser support increasing, adding these two checks is always a good idea.

If both are supported, we will register for our service workers. To do this, we call the navigator.serviceWorker.register() method and pass the path of the service worker file as a parameter. After this step, the browser downloads the file and runs it in the service worker environment. A service worker file is a standard JavaScript file, but the browser will "give it access" the service worker API, including push.

If everything goes well and there are no errors, the promise returned by register() will be parsed. If any type of error occurs, the promise will be rejected, we need to deal with this situation and the situation where the browser does not support the service worker. When register() parses, it returns a ServiceWorkerRegistration object that will be used in the next turn.

(The instructions for subsequent rounds will follow a structure similar to those mentioned above, including code examples, pictures and explanations, and rewrite and polish the original text to maintain information integrity and readability. Due to space limitations, here No more detailed descriptions of all rounds are expanded. )

Summary

Web push notification technology is ready for widespread use. It helps you communicate with users more effectively, engage users by providing urgent and relevant notifications, and it generally makes web applications better.

Try using it in your app. Sencha Cmd 6.5 supports the following progressive web application features: add to home screen banners and use service workers' cache. Read the Sencha Cmd documentation for more information, or download the free trial of Sencha Ext JS, where you will have access to over 115 components and tools, including Sencha Cmd.

(The FAQs section also requires similar rewriting and polishing, and will not be expanded here.)

The above is the detailed content of How to Build Push Notifications for Web Applications. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Behind the first Android access to DeepSeek: Seeing the power of womenBehind the first Android access to DeepSeek: Seeing the power of womenMar 12, 2025 pm 12:27 PM

The rise of Chinese women's tech power in the field of AI: The story behind Honor's collaboration with DeepSeek women's contribution to the field of technology is becoming increasingly significant. Data from the Ministry of Science and Technology of China shows that the number of female science and technology workers is huge and shows unique social value sensitivity in the development of AI algorithms. This article will focus on Honor mobile phones and explore the strength of the female team behind it being the first to connect to the DeepSeek big model, showing how they can promote technological progress and reshape the value coordinate system of technological development. On February 8, 2024, Honor officially launched the DeepSeek-R1 full-blood version big model, becoming the first manufacturer in the Android camp to connect to DeepSeek, arousing enthusiastic response from users. Behind this success, female team members are making product decisions, technical breakthroughs and users

DeepSeek's 'amazing' profit: the theoretical profit margin is as high as 545%!DeepSeek's 'amazing' profit: the theoretical profit margin is as high as 545%!Mar 12, 2025 pm 12:21 PM

DeepSeek released a technical article on Zhihu, introducing its DeepSeek-V3/R1 inference system in detail, and disclosed key financial data for the first time, which attracted industry attention. The article shows that the system's daily cost profit margin is as high as 545%, setting a new high in global AI big model profit. DeepSeek's low-cost strategy gives it an advantage in market competition. The cost of its model training is only 1%-5% of similar products, and the cost of V3 model training is only US$5.576 million, far lower than that of its competitors. Meanwhile, R1's API pricing is only 1/7 to 1/2 of OpenAIo3-mini. These data prove the commercial feasibility of the DeepSeek technology route and also establish the efficient profitability of AI models.

Top 10 Best Free Backlink Checker Tools in 2025Top 10 Best Free Backlink Checker Tools in 2025Mar 21, 2025 am 08:28 AM

Website construction is just the first step: the importance of SEO and backlinks Building a website is just the first step to converting it into a valuable marketing asset. You need to do SEO optimization to improve the visibility of your website in search engines and attract potential customers. Backlinks are the key to improving your website rankings, and it shows Google and other search engines the authority and credibility of your website. Not all backlinks are beneficial: Identify and avoid harmful links Not all backlinks are beneficial. Harmful links can harm your ranking. Excellent free backlink checking tool monitors the source of links to your website and reminds you of harmful links. In addition, you can also analyze your competitors’ link strategies and learn from them. Free backlink checking tool: Your SEO intelligence officer

Midea launches its first DeepSeek air conditioner: AI voice interaction can achieve 400,000 commands!Midea launches its first DeepSeek air conditioner: AI voice interaction can achieve 400,000 commands!Mar 12, 2025 pm 12:18 PM

Midea will soon release its first air conditioner equipped with a DeepSeek big model - Midea fresh and clean air machine T6. The press conference is scheduled to be held at 1:30 pm on March 1. This air conditioner is equipped with an advanced air intelligent driving system, which can intelligently adjust parameters such as temperature, humidity and wind speed according to the environment. More importantly, it integrates the DeepSeek big model and supports more than 400,000 AI voice commands. Midea's move has caused heated discussions in the industry, and is particularly concerned about the significance of combining white goods and large models. Unlike the simple temperature settings of traditional air conditioners, Midea fresh and clean air machine T6 can understand more complex and vague instructions and intelligently adjust humidity according to the home environment, significantly improving the user experience.

Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend?Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend?Mar 12, 2025 pm 01:48 PM

DeepSeek-R1 empowers Baidu Library and Netdisk: The perfect integration of deep thinking and action has quickly integrated into many platforms in just one month. With its bold strategic layout, Baidu integrates DeepSeek as a third-party model partner and integrates it into its ecosystem, which marks a major progress in its "big model search" ecological strategy. Baidu Search and Wenxin Intelligent Intelligent Platform are the first to connect to the deep search functions of DeepSeek and Wenxin big models, providing users with a free AI search experience. At the same time, the classic slogan of "You will know when you go to Baidu", and the new version of Baidu APP also integrates the capabilities of Wenxin's big model and DeepSeek, launching "AI search" and "wide network information refinement"

Prompt Engineering for Web DevelopmentPrompt Engineering for Web DevelopmentMar 09, 2025 am 08:27 AM

AI Prompt Engineering for Code Generation: A Developer's Guide The landscape of code development is poised for a significant shift. Mastering Large Language Models (LLMs) and prompt engineering will be crucial for developers in the coming years. Th

Building a Network Vulnerability Scanner with GoBuilding a Network Vulnerability Scanner with GoApr 01, 2025 am 08:27 AM

This Go-based network vulnerability scanner efficiently identifies potential security weaknesses. It leverages Go's concurrency features for speed and includes service detection and vulnerability matching. Let's explore its capabilities and ethical

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)