E
E
exetico2020-09-24 15:40:51
Express.js
exetico, 2020-09-24 15:40:51

How to setup wss connection?

My code
const express = require('express');
const config = require('config');
const mongoose = require('mongoose');
const cors = require('cors');
const bodyParser = require('body-parser');
const app = express();
const expressWs = require('express-ws')(app);
const path = require('path');
const fs = require('fs');

app.ws('*', function(ws, req) {
    ws.send('q')
});


const jsonParser = bodyParser.json()

const key = fs.readFileSync('ssl/private.key');
const cert = fs.readFileSync('ssl/certificate.crt');
const ca = fs.readFileSync('ssl/ca_bundle.crt');

const options = {
  key: key,
  cert: cert,
  ca: ca
}

const https = require('https');

https.createServer(options, app).listen(443)
app.use(cors());

app.use (function (req, res, next) {
 if (req.secure) {
  next();
 } else {
  res.redirect('https://' + req.headers.host + req.url);
 }
});

if (process.env.NODE_ENV === 'production') {
  app.use('/', express.static(path.join(__dirname, 'client', 'build')));

  app.get('*', (req, res) => {
  res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'))
  })
}

const PORT = config.get('port') || 5000;

async function start() {
  try {
    await mongoose.connect(config.get('mongoURI'), {
      useNewUrlParser: true,
      useUnifiedTopology: true,
      useCreateIndex: true
    });
    app.listen(PORT, ()=> console.log(`App has been started on port ${PORT}...`));
  } catch (e) {
    console.log('Server Error', e.message);
    process.exit(1);
  }
}

start();

Client: (I tore out pieces of code so as not to post the canvas here, I seem to have taken everything necessary for my question) Bottom line: in a user script on a foreign site, I want to connect a connection via web sockets. The above code works for http, but the browser swears at mixed content and therefore I have to connect on the client via wss, but in this case the server returns an error: Error during WebSocket handshake: Unexpected response code: 200. How can I set up the connection correctly? const ws = new WebSocket("ws://example.ru")

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
exetico, 2020-09-24
@exetico

Spent a whole day on sockets and never found a solution.
I decided to still use socket.io, the problem with https was solved in 10 minutes, I advise everyone with a similar problem to do the same.
The question is closed.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question