Я начинаю использовать узел js. Пока все было хорошо. До сегодняшнего дня.
Я играл с веб-сокетами, я могу установить соединение между сервером и браузером. Однако я не могу отправлять сообщения с сервера клиенту с помощью ws.send («что-то»);
Почти во всех примерах я могу обнаружить, что метод используется, и в моей ситуации он, похоже, не работает.
Может кто-нибудь объяснить мне, почему?
const express = require('express');
const path = require('path');
const WebSocket = require('ws').Server;
const router = express.Router();
const SerialPort = require('serialport');
const barCode = new SerialPort('COM50', {
baudRate: 57600
});
// --------- SETUP WS ---------
var wsport = 8085;
var ws = new WebSocket({port: wsport});
ws.on('connection', function open() {
console.log('ws connection has been established.');
// ws.send('something'); this line is not working!
});
// !!-- BarCode:: Log errors to console when they occur.
barCode.on('error', function(err) {
console.log('Error: ', err.message);
});
barCode.on('data', function (data) {
console.log('Barcode received:', data);
ws.send('received barcode');
});
// --------- SETUP EXPRESS ---------
var app = express(); // Define the application object
var port = 4000; // Specify the port to listen to
router.get('/',function(req,res){
res.sendFile(path.join(__dirname+'/public/index.html'));
//__dirname : It will resolve to your project folder.
});
router.get('/offline',function(req,res){
res.sendFile(path.join(__dirname+'/public/offline.html'));
//__dirname : It will resolve to your project folder.
});
app.use(express.static('public'));
app.use('/', router);
app.listen(process.env.port || port);
console.log('Webserver running at port ' + port);
module.exports = app;