webSocket chapter 1

WebSocket.OPEN 是 WebSocket 对象的一个属性,表示 WebSocket 连接的状态。其值为 1,表示连接已经打开并且可以进行通信。

WebSocket 对象的状态有以下几种:

  • WebSocket.CONNECTING:值为 0,表示连接还未开启。
  • WebSocket.OPEN:值为 1,表示连接已经开启并且可以进行通信。
  • WebSocket.CLOSING:值为 2,表示连接正在关闭。
  • WebSocket.CLOSED:值为 3,表示连接已经关闭或者连接无法建立。
html 复制代码
<!--
 * when you set a variable | function | logic | declaration,please add  a  annotation as possible,God Bless You 🎈
 *  
 * @Author: guoyongkun 👨‍💻
 * @Date: 2024-02-24 09:16:08
 * @LastEditors: guoyongkun 👨
 * @LastEditTime: 2024-02-24 10:19:56
 * @FilePath: /websocket/index.html
 * @Description: please  set some  description for this file , let's improve the  code maintainability 💡 ... 
-->
<!-- index.html -->
<!doctype html>
<html>
  <head>
    <title>WebSocket Demo</title>
  </head>
  <body>
    <button id="sendButton">Send Message</button>
    <script>
      const socket = new WebSocket('ws://localhost:3000');
    //   console.log(socket.binaryType, 'socket.binaryType');
    //   socket.binaryType = 'arraybuffer';
      socket.addEventListener('open', () => {
        console.log('Connected to server');
      });

      socket.addEventListener('message', (event) => {
        console.log('Message from server: ', event.data);
        console.log(event.data+'', 'event.data');
        // blob 转换为字符串
        // const reader = new FileReader();
        // reader.onload = function () {
        //   console.log('reader.result', reader.result);
        // };
        // reader.readAsText(event.data);
      });

      document.getElementById('sendButton').addEventListener('click', () => {
        socket.send('Hello Server!');
      });
    </script>
  </body>
</html>
javascript 复制代码
/*
 * when you set a variable | function | logic | declaration,please add  a  annotation as possible,God Bless You 🎈
 *
 * @Author: guoyongkun 👨‍💻
 * @Date: 2024-02-24 09:17:47
 * @LastEditors: guoyongkun 👨
 * @LastEditTime: 2024-02-24 10:50:19
 * @FilePath: /websocket/server.js
 * @Description: please  set some  description for this file , let's improve the  code maintainability 💡 ...
 */
// server.js
const express = require('express');
const WebSocket = require('ws');
const http = require('http');
// const Blob = require('blob');
const app = express();
// const Blob = require('fetch-blob');
// import Blob from 'fetch-blob';
// console.log('app99',app);
const server = http.createServer(app);
const wss = new WebSocket.Server({server});

wss.on('connection', (ws) => {
  console.log('Client connected');

  ws.on('message', (message) => {
    console.log('Received: ' + message);
    console.log(message + 'message1');
    // Broadcast the message to all clients
    console.log(wss.clients.size, 'wss.clients.size');
    // console.log(wss.clients,'wss.clients');
    wss.clients.forEach((client) => {
      if (client.readyState === WebSocket.OPEN) {
        console.log('Send message to client', client.readyState);
        console.log(message, 'message2');
        client.send(message);
      }
    });
  });

  ws.on('close', () => {
    console.log('Client disconnected');
  });
});

server.listen(3000, () => {
  console.log('Server is running on port 3000');
});

import('fetch-blob').then((module) => {
  //   console.log(module, 'module.default');
  //   let blob1 = new module.Blob(['123'], {type: 'text/plain'});
  //   console.log(blob1+'1', 'blob1');
});

// 创建一个长度为 10 的 Buffer,填充为 0
const buf1 = Buffer.alloc(10);
console.log(buf1, 'buf1');//<Buffer 00 00 00 00 00 00 00 00 00 00>
buf1.write('123');
console.log(buf1, 'buf1');//<Buffer 31 32 33 00 00 00 00 00 00 00>
// 读取 Buffer 中的数据
for (let i = 0; i < buf1.length; i++) {
  console.log(buf1[i]); // 打印每个字节 // 49 50 51 0 0 0 0 0 0 0
}
//读取 Buffer 中的数据
console.log(buf1.toString()); /// 123
相关推荐
虎头金猫3 小时前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
只睡四小时4 小时前
Canvas 弹道联机实战:700 行 + 固定时间步长
python·websocket·html5·游戏开发·canvas
wuyk5555 小时前
《WiFi 嵌入式物联网开发全套实战》| 第 16 章 ESP32 AP+STA 双模共存原理与工程坑点
网络·stm32·物联网
XUEYUAN52127 小时前
ASN 自治系统号风控:平台如何通过 IP 所属自治域批量识别代理流量
python·网络协议·http·网络安全·socks5
QYRdata7 小时前
年均增速24.2%!机器人数据湖未来六年增长动能强劲
网络·机器人·服务发现
CHENKONG_CK8 小时前
破解制鞋打磨痛点:RFID赋能去毛刺工序自动化升级
网络·单片机·嵌入式硬件·网络协议·tcp/ip
chshang19928 小时前
工业路由器是什么?浅谈5G工业网络中的IR602
网络·物联网·5g·智能路由器
萧瑟余晖8 小时前
Netty 核心组件与 Reactor 模型详解
网络·架构
ITxiaobing20239 小时前
IP 定位服务选型指南:从准确率到工程落地的技术考察
linux·服务器·网络
wuyk5559 小时前
【Socket 进阶之路】第 9 章 Linux 网络服务量产稳定性优化|心跳保活、TIME_WAIT、SO_LINGER、内存池、断线重连、完整异常防护框架
linux·服务器·开发语言·网络·物联网