Node.js
Utilizzando WebSocket con Node.JS
Ricerca…
Installazione di WebSocket
Ci sono alcuni modi per installare WebSocket nel tuo progetto. Ecco alcuni esempi:
npm install --save ws
o all'interno del pacchetto package.json utilizzando:
"dependencies": {
"ws": "*"
},
Aggiunta di WebSocket al tuo file
Per aggiungere ws al tuo file usa semplicemente:
var ws = require('ws');
Utilizzo dei server WebSocket e WebSocket
Per aprire un nuovo WebSocket, è sufficiente aggiungere qualcosa come:
var WebSocket = require("ws");
var ws = new WebSocket("ws://host:8080/OptionalPathName);
// Continue on with your code...
O per aprire un server, usa:
var WebSocketServer = require("ws").Server;
var ws = new WebSocketServer({port: 8080, path: "OptionalPathName"});
Un esempio di server WebSocket semplice
var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({ port: 8080 }); // If you want to add a path as well, use path: "PathName"
wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
console.log('received: %s', message);
});
ws.send('something');
});
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow