biketrack-app/node_modules/isomorphic-ws
2022-07-11 10:27:11 +02:00
..
browser.js first commit in testing 2022-07-11 10:27:11 +02:00
index.d.ts first commit in testing 2022-07-11 10:27:11 +02:00
LICENSE first commit in testing 2022-07-11 10:27:11 +02:00
node.js first commit in testing 2022-07-11 10:27:11 +02:00
package.json first commit in testing 2022-07-11 10:27:11 +02:00
README.md first commit in testing 2022-07-11 10:27:11 +02:00

isomorphic-ws

Isomorphic implementation of WebSocket.

It uses:

Limitations

Before using this module you should know that ws is not perfectly API compatible with WebSocket, you should always test your code against both Node and browsers.

Some major differences:

  • no Server implementation in browsers

Usage

You need to install both this package and ws:

> npm i isomorphic-ws ws

Then just require this package:

const WebSocket = require('isomorphic-ws')

const ws = new WebSocket('wss://echo.websocket.org/', {
  origin: 'https://websocket.org'
});

ws.onopen = function open() {
  console.log('connected');
  ws.send(Date.now());
});

ws.onclose = function close() {
  console.log('disconnected');
});

ws.onmessage = function incoming(data) {
  console.log(`Roundtrip time: ${Date.now() - data} ms`);

  setTimeout(function timeout() {
    ws.send(Date.now());
  }, 500);
});

License

MIT