Sök…


Installera WebSocket's

Det finns några sätt att installera WebSocket på i ditt projekt. Här är några exempel:

npm install --save ws

eller inuti ditt paket.json med:

"dependencies": {
  "ws": "*"
},

Lägga till WebSocket till dina filer

För att lägga till ws till din fil använder du bara:

var ws = require('ws');

Använda WebSocket och WebSocket Server

För att öppna en ny WebSocket, lägg bara till något som:

var WebSocket = require("ws");
var ws = new WebSocket("ws://host:8080/OptionalPathName);
// Continue on with your code...

Eller för att öppna en server använder du:

var WebSocketServer = require("ws").Server;
var ws = new WebSocketServer({port: 8080, path: "OptionalPathName"});

Ett enkelt exempel på WebSocket-server

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow