Skip to content

Commit

Permalink
[major] Add an ES module wrapper
Browse files Browse the repository at this point in the history
Fixes #1886
  • Loading branch information
lpinca committed Jul 14, 2021
1 parent e173423 commit 78adf5f
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 43 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.yaml
Expand Up @@ -7,7 +7,8 @@ extends:
- eslint:recommended
- plugin:prettier/recommended
parserOptions:
ecmaVersion: 9
ecmaVersion: latest
sourceType: module
rules:
no-console: off
no-var: error
Expand Down
74 changes: 37 additions & 37 deletions README.md
Expand Up @@ -98,9 +98,9 @@ into the creation of [raw deflate/inflate streams][node-zlib-deflaterawdocs].
See [the docs][ws-server-options] for more options.

```js
const WebSocket = require('ws');
import WebSocket, { WebSocketServer } from 'ws';

const wss = new WebSocket.Server({
const wss = new WebSocketServer({
port: 8080,
perMessageDeflate: {
zlibDeflateOptions: {
Expand Down Expand Up @@ -129,7 +129,7 @@ server. To always disable the extension on the client set the
`perMessageDeflate` option to `false`.

```js
const WebSocket = require('ws');
import WebSocket from 'ws';

const ws = new WebSocket('ws://www.host.com/path', {
perMessageDeflate: false
Expand All @@ -141,7 +141,7 @@ const ws = new WebSocket('ws://www.host.com/path', {
### Sending and receiving text data

```js
const WebSocket = require('ws');
import WebSocket from 'ws';

const ws = new WebSocket('ws://www.host.com/path');

Expand All @@ -157,7 +157,7 @@ ws.on('message', function incoming(message) {
### Sending binary data

```js
const WebSocket = require('ws');
import WebSocket from 'ws';

const ws = new WebSocket('ws://www.host.com/path');

Expand All @@ -175,9 +175,9 @@ ws.on('open', function open() {
### Simple server

```js
const WebSocket = require('ws');
import { WebSocketServer } from 'ws';

const wss = new WebSocket.Server({ port: 8080 });
const wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
Expand All @@ -191,15 +191,15 @@ wss.on('connection', function connection(ws) {
### External HTTP/S server

```js
const fs = require('fs');
const https = require('https');
const WebSocket = require('ws');
import { createServer } from 'https';
import { readFileSync } from 'fs';
import { WebSocketServer } from 'ws';

const server = https.createServer({
cert: fs.readFileSync('/path/to/cert.pem'),
key: fs.readFileSync('/path/to/key.pem')
const server = createServer({
cert: readFileSync('/path/to/cert.pem'),
key: readFileSync('/path/to/key.pem')
});
const wss = new WebSocket.Server({ server });
const wss = new WebSocketServer({ server });

wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
Expand All @@ -215,13 +215,13 @@ server.listen(8080);
### Multiple servers sharing a single HTTP/S server

```js
const http = require('http');
const WebSocket = require('ws');
const url = require('url');
import { createServer } from 'http';
import { parse } from 'url';
import { WebSocketServer } from 'ws';

const server = http.createServer();
const wss1 = new WebSocket.Server({ noServer: true });
const wss2 = new WebSocket.Server({ noServer: true });
const server = createServer();
const wss1 = new WebSocketServer({ noServer: true });
const wss2 = new WebSocketServer({ noServer: true });

wss1.on('connection', function connection(ws) {
// ...
Expand All @@ -232,7 +232,7 @@ wss2.on('connection', function connection(ws) {
});

server.on('upgrade', function upgrade(request, socket, head) {
const pathname = url.parse(request.url).pathname;
const { pathname } = parse(request.url);

if (pathname === '/foo') {
wss1.handleUpgrade(request, socket, head, function done(ws) {
Expand All @@ -253,11 +253,11 @@ server.listen(8080);
### Client authentication

```js
const http = require('http');
const WebSocket = require('ws');
import WebSocket from 'ws';
import { createServer } from 'http';

const server = http.createServer();
const wss = new WebSocket.Server({ noServer: true });
const server = createServer();
const wss = new WebSocketServer({ noServer: true });

wss.on('connection', function connection(ws, request, client) {
ws.on('message', function message(msg) {
Expand Down Expand Up @@ -291,9 +291,9 @@ A client WebSocket broadcasting to all connected WebSocket clients, including
itself.

```js
const WebSocket = require('ws');
import WebSocket, { WebSocketServer } from 'ws';

const wss = new WebSocket.Server({ port: 8080 });
const wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws) {
ws.on('message', function incoming(data, isBinary) {
Expand All @@ -310,9 +310,9 @@ A client WebSocket broadcasting to every other connected WebSocket clients,
excluding itself.

```js
const WebSocket = require('ws');
import WebSocket, { WebSocketServer } from 'ws';

const wss = new WebSocket.Server({ port: 8080 });
const wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws) {
ws.on('message', function incoming(data, isBinary) {
Expand All @@ -328,7 +328,7 @@ wss.on('connection', function connection(ws) {
### echo.websocket.org demo

```js
const WebSocket = require('ws');
import WebSocket from 'ws';

const ws = new WebSocket('wss://echo.websocket.org/', {
origin: 'https://websocket.org'
Expand All @@ -355,13 +355,13 @@ ws.on('message', function incoming(data) {
### Use the Node.js streams API

```js
const WebSocket = require('ws');
import WebSocket, { createWebSocketStream } from 'ws';

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

const duplex = WebSocket.createWebSocketStream(ws, { encoding: 'utf8' });
const duplex = createWebSocketStream(ws, { encoding: 'utf8' });

duplex.pipe(process.stdout);
process.stdin.pipe(duplex);
Expand All @@ -381,9 +381,9 @@ Otherwise, see the test cases.
The remote IP address can be obtained from the raw socket.

```js
const WebSocket = require('ws');
import { WebSocketServer } from 'ws';

const wss = new WebSocket.Server({ port: 8080 });
const wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws, req) {
const ip = req.socket.remoteAddress;
Expand All @@ -409,15 +409,15 @@ In these cases ping messages can be used as a means to verify that the remote
endpoint is still responsive.

```js
const WebSocket = require('ws');
import { WebSocketServer } from 'ws';

function noop() {}

function heartbeat() {
this.isAlive = true;
}

const wss = new WebSocket.Server({ port: 8080 });
const wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws) {
ws.isAlive = true;
Expand Down Expand Up @@ -446,7 +446,7 @@ without knowing it. You might want to add a ping listener on your clients to
prevent that. A simple implementation would be:

```js
const WebSocket = require('ws');
import WebSocket from 'ws';

function heartbeat() {
clearTimeout(this.pingTimeout);
Expand Down
8 changes: 4 additions & 4 deletions doc/ws.md
Expand Up @@ -2,8 +2,8 @@

## Table of Contents

- [Class: WebSocket.Server](#class-websocketserver)
- [new WebSocket.Server(options[, callback])](#new-websocketserveroptions-callback)
- [Class: WebSocketServer](#class-websocketserver)
- [new WebSocketServer(options[, callback])](#new-websocketserveroptions-callback)
- [Event: 'close'](#event-close)
- [Event: 'connection'](#event-connection)
- [Event: 'error'](#event-error)
Expand Down Expand Up @@ -57,11 +57,11 @@
- [WS_ERR_UNSUPPORTED_DATA_PAYLOAD_LENGTH](#ws_err_unsupported_data_payload_length)
- [WS_ERR_UNSUPPORTED_MESSAGE_LENGTH](#ws_err_unsupported_message_length)

## Class: WebSocket.Server
## Class: WebSocketServer

This class represents a WebSocket server. It extends the `EventEmitter`.

### new WebSocket.Server(options[, callback])
### new WebSocketServer(options[, callback])

- `options` {Object}
- `host` {String} The hostname where to bind the server.
Expand Down
7 changes: 6 additions & 1 deletion package.json
Expand Up @@ -16,14 +16,19 @@
"author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
"license": "MIT",
"main": "index.js",
"exports": {
"import": "./wrapper.mjs",
"require": "./index.js"
},
"browser": "browser.js",
"engines": {
"node": ">=10.0.0"
},
"files": [
"browser.js",
"index.js",
"lib/*.js"
"lib/*.js",
"wrapper.mjs"
],
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --throw-deprecation test/*.test.js",
Expand Down
8 changes: 8 additions & 0 deletions wrapper.mjs
@@ -0,0 +1,8 @@
import createWebSocketStream from './lib/stream.js';
import Receiver from './lib/receiver.js';
import Sender from './lib/sender.js';
import WebSocket from './lib/websocket.js';
import WebSocketServer from './lib/websocket-server.js';

export { createWebSocketStream, Receiver, Sender, WebSocket, WebSocketServer };
export default WebSocket;

0 comments on commit 78adf5f

Please sign in to comment.