欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Nodejs搭建wss服务器

程序员文章站 2022-03-01 17:24:44
...


   Nodejs搭建wss服务器    

           

首先使用OpenSSL创建自签名证书:

Nodejs搭建wss服务器
 > /path/to/- -key /path/to/.pem --req -days  - csr.pem -signkey /path/to/.pem - /path/to/file.crt
Nodejs搭建wss服务器

使用ws模块创建wss服务器:

Nodejs搭建wss服务器
 https=require( ws=require( fs=require( keypath=process.cwd()+; certpath=process.cwd()+;
  options = server=https.createServer(options, function (req, res) {
    res.writeHead();
    res.end( wss =  ws.Server( { server: server } );wss.on(
Nodejs搭建wss服务器

客户端链接:

 ws =  WebSocket(