search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Table of Contents
1. Create a WebSocket Connection
2. Handle Connection Events
3. Send and Receive Data
4. Close the Connection
Important Notes
Home Web Front-end H5 Tutorial How do you use websockets in HTML5?

How do you use websockets in HTML5?

Aug 13, 2025 am 02:22 AM
html5

WebSockets in HTML5 enable full-duplex, real-time communication between client and server through a persistent connection. 1. Create a WebSocket connection using const socket = new WebSocket('wss://example.com/socket'); with ws:// or wss:// protocol. 2. Handle events: 'open' for connection established, 'message' for incoming data, 'error' for errors, and 'close' for connection closure, each via addEventListener. 3. Send data using socket.send() with text, JSON (using JSON.stringify), or binary; receive data through the 'message' event, parsing JSON as needed. 4. Close the connection gracefully with socket.close() and optionally provide a code and reason. The server must support WebSocket protocol using frameworks like ws in Node.js or websockets in Python, and production applications should implement reconnection logic and respect same-origin policies, ensuring both client and server can communicate effectively through this persistent channel.

How do you use websockets in HTML5?

WebSockets in HTML5 allow for full-duplex, real-time communication between a client (like a web browser) and a server. Unlike traditional HTTP requests, which are stateless and request-response based, WebSockets keep a persistent connection open, enabling either side to send data at any time.

How do you use websockets in HTML5?

Here’s how you use WebSockets in HTML5:

1. Create a WebSocket Connection

You start by creating a new WebSocket object in JavaScript, passing the server URL with the ws:// or wss:// (secure) protocol.

How do you use websockets in HTML5?
const socket = new WebSocket('wss://example.com/socket');
  • Use ws:// for unencrypted connections (like HTTP).
  • Use wss:// for encrypted connections (like HTTPS).

2. Handle Connection Events

The WebSocket object emits events you can listen to:

  • open: Fired when the connection is established.
  • message: Fired when a message is received from the server.
  • error: Fired when an error occurs.
  • close: Fired when the connection is closed.

Example:

How do you use websockets in HTML5?
// Connection opened
socket.addEventListener('open', (event) => {
  console.log('Connected to server');
  socket.send('Hello Server!');
});

// Listen for messages
socket.addEventListener('message', (event) => {
  console.log('Message from server:', event.data);
});

// Handle errors
socket.addEventListener('error', (event) => {
  console.error('WebSocket error:', event);
});

// Handle connection close
socket.addEventListener('close', (event) => {
  console.log('Connection closed');
});

3. Send and Receive Data

Once connected, you can send data using the send() method. The server can also send data at any time.

// Send a message to the server
socket.send('Hello, server!');

// Receiving messages is handled in the 'message' event above

You can send text, JSON, or even binary data like ArrayBuffer or Blob.

Example with JSON:

const data = { type: 'chat', message: 'Hi everyone!' };
socket.send(JSON.stringify(data));

And to handle incoming JSON:

socket.addEventListener('message', (event) => {
  const data = JSON.parse(event.data);
  console.log('Received:', data);
});

4. Close the Connection

To close the connection gracefully, call the close() method:

socket.close();

You can also pass a code and a reason:

socket.close(1000, 'Closing normally');

Important Notes

  • The server must support WebSocket protocol — standard HTTP servers won’t work.
  • Common backend implementations use Node.js (with ws or Socket.IO), Python (with websockets or Flask-SocketIO), or other WebSocket-enabled frameworks.
  • Always handle reconnection logic in production apps in case the connection drops.
  • Be cautious with cross-origin policies — WebSocket connections follow the same-origin policy unless the server explicitly allows it.

Basically, WebSockets give you a persistent pipe between browser and server. Once set up, they’re simple to use with just a few event listeners and the send() method. Just remember: the backend must be built to handle WebSocket connections — HTML5 provides the client tools, but the server needs to speak the same language.

The above is the detailed content of How do you use websockets in HTML5?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Popular tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to quickly create a virtual human explanation video with Synthesia_Synthesia virtual human video production guide [Quick] How to quickly create a virtual human explanation video with Synthesia_Synthesia virtual human video production guide [Quick] Dec 18, 2025 pm 06:54 PM

Synthesia can quickly generate high-quality virtual human explanation videos: 1. Select a virtual human and customize the voice intonation; 2. Paste the script to enable automatic lip synchronization; 3. Add dynamic backgrounds and graphic and text layers; 4. Generate multi-language versions in batches with one click; 5. Export MP4 or embed HTML5 code for publication.

What to do if the IE browser web page loads slowly? IE browser performance optimization What to do if the IE browser web page loads slowly? IE browser performance optimization Jan 15, 2026 pm 02:21 PM

Optimization methods for slow loading of IE web pages include: 1. Disable non-essential add-ons; 2. Reset IE settings; 3. Adjust connection and advanced parameters; 4. Clean system temporary files and DNS cache; 5. Turn off hardware acceleration and set to standard document mode.

Quark Browser video cannot be played. Steps to troubleshoot Quark Browser playback problems. Quark Browser video cannot be played. Steps to troubleshoot Quark Browser playback problems. Jan 22, 2026 am 09:30 AM

Solutions to abnormal video playback in Quark browser include: 1. Check network connection and access permissions; 2. Clear cache and website data; 3. Enable JavaScript and H5 playback support; 4. Switch to desktop version of UA; 5. Turn off hardware acceleration and reset media services.

3699 mini-games online play entrance, latest decompression mini-games updated daily 3699 mini-games online play entrance, latest decompression mini-games updated daily Jan 13, 2026 pm 02:12 PM

The entrance address for online play of 3699 mini games is https://www.3699.com. The platform is based on HTML5 technology and runs without plug-ins. It supports multi-terminal adaptation, CDN acceleration, preloading optimization, and decompressed games are updated daily, classified according to emotional dimensions, and taking into account both interaction friendliness and privacy and security protection.

What to do if Microsoft Edge video clarity is blurred Microsoft Edge image quality adjustment What to do if Microsoft Edge video clarity is blurred Microsoft Edge image quality adjustment Jan 04, 2026 am 10:24 AM

Edge video blur can be enabled by enabling VSR, using the enhancement button, configuring NVIDIARTX overclocking, turning off hardware acceleration or checking DRM restrictions. The corresponding solution needs to be selected based on the graphics card model, browser version and video encryption.

What should you pay attention to when collecting Shenma search on the mobile terminal? Tips for adapting to the mobile terminal [Instructions] What should you pay attention to when collecting Shenma search on the mobile terminal? Tips for adapting to the mobile terminal [Instructions] Jan 04, 2026 am 11:00 AM

In order to improve the inclusion effect of Shenma Search mobile terminal, it is necessary to adopt independent adaptation (self-jumping), add mobile-agentMeta statement, submit corresponding Sitemap for PC and mobile pages, ensure that the basic quality of mobile pages meets the standards, and verify the effective status of adaptation.

Browser browser high-definition rendering version address browser browser organ network high-definition rendering version clearly presented Browser browser high-definition rendering version address browser browser organ network high-definition rendering version clearly presented Dec 20, 2025 am 09:30 AM

The address of browser browser HD rendering version is https://www.browser-hd-render.com, which features 4K sharp rendering, HDR video playback, Brotli compression optimization, end-to-end encrypted synchronization and accessibility auxiliary functions.

How to set full-screen mode in uc browser_Steps to set full-screen mode in uc browser [Compilation] How to set full-screen mode in uc browser_Steps to set full-screen mode in uc browser [Compilation] Jan 14, 2026 pm 09:27 PM

There are five ways to solve the problem that UC Browser cannot go full screen: 1. Turn on the full screen switch through the toolbox; 2. Add UC smart components in the settings; 3. Switch UA to the computer version and refresh the page; 4. Use the F11 key or double-click the video and other system-level operations; 5. Clear the web page and GPU cache and then restart.

Related articles