llonebot-dist 6.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. dist/default_config.json +68 -0
  2. dist/llonebot.js +48348 -0
  3. dist/llonebot.js.map +1 -0
  4. dist/node_modules/@borewit/text-codec/LICENSE.txt +9 -0
  5. dist/node_modules/@borewit/text-codec/README.md +76 -0
  6. dist/node_modules/@borewit/text-codec/lib/index.d.ts +8 -0
  7. dist/node_modules/@borewit/text-codec/lib/index.js +161 -0
  8. dist/node_modules/@borewit/text-codec/package.json +68 -0
  9. dist/node_modules/@minatojs/sql.js/LICENSE +44 -0
  10. dist/node_modules/@minatojs/sql.js/README.md +357 -0
  11. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.d.ts +316 -0
  12. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.js +225 -0
  13. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.wasm +0 -0
  14. dist/node_modules/@minatojs/sql.js/package.json +58 -0
  15. dist/node_modules/@tokenizer/inflate/LICENSE +15 -0
  16. dist/node_modules/@tokenizer/inflate/README.md +114 -0
  17. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.d.ts +6 -0
  18. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.js +19 -0
  19. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.d.ts +26 -0
  20. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.js +233 -0
  21. dist/node_modules/@tokenizer/inflate/lib/ZipToken.d.ts +94 -0
  22. dist/node_modules/@tokenizer/inflate/lib/ZipToken.js +117 -0
  23. dist/node_modules/@tokenizer/inflate/lib/index.d.ts +3 -0
  24. dist/node_modules/@tokenizer/inflate/lib/index.js +2 -0
  25. dist/node_modules/@tokenizer/inflate/package.json +76 -0
  26. dist/node_modules/@tokenizer/token/README.md +19 -0
  27. dist/node_modules/@tokenizer/token/index.d.ts +30 -0
  28. dist/node_modules/@tokenizer/token/package.json +33 -0
  29. dist/node_modules/debug/LICENSE +20 -0
  30. dist/node_modules/debug/README.md +481 -0
  31. dist/node_modules/debug/package.json +64 -0
  32. dist/node_modules/debug/src/browser.js +272 -0
  33. dist/node_modules/debug/src/common.js +292 -0
  34. dist/node_modules/debug/src/index.js +10 -0
  35. dist/node_modules/debug/src/node.js +263 -0
  36. dist/node_modules/file-type/core.d.ts +253 -0
  37. dist/node_modules/file-type/core.js +1899 -0
  38. dist/node_modules/file-type/index.d.ts +98 -0
  39. dist/node_modules/file-type/index.js +86 -0
  40. dist/node_modules/file-type/license +9 -0
  41. dist/node_modules/file-type/package.json +288 -0
  42. dist/node_modules/file-type/readme.md +674 -0
  43. dist/node_modules/file-type/supported.js +356 -0
  44. dist/node_modules/file-type/util.js +60 -0
  45. dist/node_modules/ieee754/LICENSE +11 -0
  46. dist/node_modules/ieee754/README.md +51 -0
  47. dist/node_modules/ieee754/index.d.ts +10 -0
  48. dist/node_modules/ieee754/index.js +85 -0
  49. dist/node_modules/ieee754/package.json +52 -0
  50. dist/node_modules/ms/index.js +162 -0
  51. dist/node_modules/ms/license.md +21 -0
  52. dist/node_modules/ms/package.json +38 -0
  53. dist/node_modules/ms/readme.md +59 -0
  54. dist/node_modules/silk-wasm/LICENSE +21 -0
  55. dist/node_modules/silk-wasm/README.md +85 -0
  56. dist/node_modules/silk-wasm/lib/index.cjs +16 -0
  57. dist/node_modules/silk-wasm/lib/index.d.ts +70 -0
  58. dist/node_modules/silk-wasm/lib/index.mjs +16 -0
  59. dist/node_modules/silk-wasm/lib/silk.wasm +0 -0
  60. dist/node_modules/silk-wasm/lib/utils.d.ts +4 -0
  61. dist/node_modules/silk-wasm/package.json +39 -0
  62. dist/node_modules/strtok3/LICENSE.txt +21 -0
  63. dist/node_modules/strtok3/README.md +399 -0
  64. dist/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
  65. dist/node_modules/strtok3/lib/AbstractTokenizer.js +108 -0
  66. dist/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
  67. dist/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
  68. dist/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
  69. dist/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
  70. dist/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
  71. dist/node_modules/strtok3/lib/FileTokenizer.js +61 -0
  72. dist/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +31 -0
  73. dist/node_modules/strtok3/lib/ReadStreamTokenizer.js +102 -0
  74. dist/node_modules/strtok3/lib/core.d.ts +40 -0
  75. dist/node_modules/strtok3/lib/core.js +62 -0
  76. dist/node_modules/strtok3/lib/index.d.ts +16 -0
  77. dist/node_modules/strtok3/lib/index.js +22 -0
  78. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
  79. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
  80. dist/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
  81. dist/node_modules/strtok3/lib/stream/Deferred.js +10 -0
  82. dist/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
  83. dist/node_modules/strtok3/lib/stream/Errors.js +16 -0
  84. dist/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
  85. dist/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
  86. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
  87. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
  88. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
  89. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
  90. dist/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
  91. dist/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
  92. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
  93. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
  94. dist/node_modules/strtok3/lib/stream/index.d.ts +6 -0
  95. dist/node_modules/strtok3/lib/stream/index.js +5 -0
  96. dist/node_modules/strtok3/lib/types.d.ts +139 -0
  97. dist/node_modules/strtok3/lib/types.js +1 -0
  98. dist/node_modules/strtok3/package.json +94 -0
  99. dist/node_modules/token-types/LICENSE.txt +9 -0
  100. dist/node_modules/token-types/README.md +120 -0
  101. dist/node_modules/token-types/lib/index.d.ts +135 -0
  102. dist/node_modules/token-types/lib/index.js +401 -0
  103. dist/node_modules/token-types/package.json +81 -0
  104. dist/node_modules/uint8array-extras/index.d.ts +312 -0
  105. dist/node_modules/uint8array-extras/index.js +321 -0
  106. dist/node_modules/uint8array-extras/license +9 -0
  107. dist/node_modules/uint8array-extras/package.json +54 -0
  108. dist/node_modules/uint8array-extras/readme.md +301 -0
  109. dist/node_modules/ws/LICENSE +20 -0
  110. dist/node_modules/ws/README.md +548 -0
  111. dist/node_modules/ws/browser.js +8 -0
  112. dist/node_modules/ws/index.js +13 -0
  113. dist/node_modules/ws/lib/buffer-util.js +131 -0
  114. dist/node_modules/ws/lib/constants.js +18 -0
  115. dist/node_modules/ws/lib/event-target.js +292 -0
  116. dist/node_modules/ws/lib/extension.js +203 -0
  117. dist/node_modules/ws/lib/limiter.js +55 -0
  118. dist/node_modules/ws/lib/permessage-deflate.js +528 -0
  119. dist/node_modules/ws/lib/receiver.js +706 -0
  120. dist/node_modules/ws/lib/sender.js +602 -0
  121. dist/node_modules/ws/lib/stream.js +161 -0
  122. dist/node_modules/ws/lib/subprotocol.js +62 -0
  123. dist/node_modules/ws/lib/validation.js +152 -0
  124. dist/node_modules/ws/lib/websocket-server.js +550 -0
  125. dist/node_modules/ws/lib/websocket.js +1388 -0
  126. dist/node_modules/ws/package.json +69 -0
  127. dist/node_modules/ws/wrapper.mjs +8 -0
  128. dist/package.json +1 -0
  129. dist/webui/assets/index-B9vGhdCO.js +256 -0
  130. dist/webui/assets/index-DaqFU7JR.css +1 -0
  131. dist/webui/index.html +13 -0
  132. dist/webui/logo.jpg +0 -0
  133. dist//344/275/277/347/224/250/350/257/264/346/230/216.txt +11 -0
  134. dist//346/233/264/346/226/260/346/227/245/345/277/227.txt +399 -0
@@ -0,0 +1,548 @@
1
+ # ws: a Node.js WebSocket library
2
+
3
+ [![Version npm](https://img.shields.io/npm/v/ws.svg?logo=npm)](https://www.npmjs.com/package/ws)
4
+ [![CI](https://img.shields.io/github/actions/workflow/status/websockets/ws/ci.yml?branch=master&label=CI&logo=github)](https://github.com/websockets/ws/actions?query=workflow%3ACI+branch%3Amaster)
5
+ [![Coverage Status](https://img.shields.io/coveralls/websockets/ws/master.svg?logo=coveralls)](https://coveralls.io/github/websockets/ws)
6
+
7
+ ws is a simple to use, blazing fast, and thoroughly tested WebSocket client and
8
+ server implementation.
9
+
10
+ Passes the quite extensive Autobahn test suite: [server][server-report],
11
+ [client][client-report].
12
+
13
+ **Note**: This module does not work in the browser. The client in the docs is a
14
+ reference to a backend with the role of a client in the WebSocket communication.
15
+ Browser clients must use the native
16
+ [`WebSocket`](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket)
17
+ object. To make the same code work seamlessly on Node.js and the browser, you
18
+ can use one of the many wrappers available on npm, like
19
+ [isomorphic-ws](https://github.com/heineiuo/isomorphic-ws).
20
+
21
+ ## Table of Contents
22
+
23
+ - [Protocol support](#protocol-support)
24
+ - [Installing](#installing)
25
+ - [Opt-in for performance](#opt-in-for-performance)
26
+ - [Legacy opt-in for performance](#legacy-opt-in-for-performance)
27
+ - [API docs](#api-docs)
28
+ - [WebSocket compression](#websocket-compression)
29
+ - [Usage examples](#usage-examples)
30
+ - [Sending and receiving text data](#sending-and-receiving-text-data)
31
+ - [Sending binary data](#sending-binary-data)
32
+ - [Simple server](#simple-server)
33
+ - [External HTTP/S server](#external-https-server)
34
+ - [Multiple servers sharing a single HTTP/S server](#multiple-servers-sharing-a-single-https-server)
35
+ - [Client authentication](#client-authentication)
36
+ - [Server broadcast](#server-broadcast)
37
+ - [Round-trip time](#round-trip-time)
38
+ - [Use the Node.js streams API](#use-the-nodejs-streams-api)
39
+ - [Other examples](#other-examples)
40
+ - [FAQ](#faq)
41
+ - [How to get the IP address of the client?](#how-to-get-the-ip-address-of-the-client)
42
+ - [How to detect and close broken connections?](#how-to-detect-and-close-broken-connections)
43
+ - [How to connect via a proxy?](#how-to-connect-via-a-proxy)
44
+ - [Changelog](#changelog)
45
+ - [License](#license)
46
+
47
+ ## Protocol support
48
+
49
+ - **HyBi drafts 07-12** (Use the option `protocolVersion: 8`)
50
+ - **HyBi drafts 13-17** (Current default, alternatively option
51
+ `protocolVersion: 13`)
52
+
53
+ ## Installing
54
+
55
+ ```
56
+ npm install ws
57
+ ```
58
+
59
+ ### Opt-in for performance
60
+
61
+ [bufferutil][] is an optional module that can be installed alongside the ws
62
+ module:
63
+
64
+ ```
65
+ npm install --save-optional bufferutil
66
+ ```
67
+
68
+ This is a binary addon that improves the performance of certain operations such
69
+ as masking and unmasking the data payload of the WebSocket frames. Prebuilt
70
+ binaries are available for the most popular platforms, so you don't necessarily
71
+ need to have a C++ compiler installed on your machine.
72
+
73
+ To force ws to not use bufferutil, use the
74
+ [`WS_NO_BUFFER_UTIL`](./doc/ws.md#ws_no_buffer_util) environment variable. This
75
+ can be useful to enhance security in systems where a user can put a package in
76
+ the package search path of an application of another user, due to how the
77
+ Node.js resolver algorithm works.
78
+
79
+ #### Legacy opt-in for performance
80
+
81
+ If you are running on an old version of Node.js (prior to v18.14.0), ws also
82
+ supports the [utf-8-validate][] module:
83
+
84
+ ```
85
+ npm install --save-optional utf-8-validate
86
+ ```
87
+
88
+ This contains a binary polyfill for [`buffer.isUtf8()`][].
89
+
90
+ To force ws not to use utf-8-validate, use the
91
+ [`WS_NO_UTF_8_VALIDATE`](./doc/ws.md#ws_no_utf_8_validate) environment variable.
92
+
93
+ ## API docs
94
+
95
+ See [`/doc/ws.md`](./doc/ws.md) for Node.js-like documentation of ws classes and
96
+ utility functions.
97
+
98
+ ## WebSocket compression
99
+
100
+ ws supports the [permessage-deflate extension][permessage-deflate] which enables
101
+ the client and server to negotiate a compression algorithm and its parameters,
102
+ and then selectively apply it to the data payloads of each WebSocket message.
103
+
104
+ The extension is disabled by default on the server and enabled by default on the
105
+ client. It adds a significant overhead in terms of performance and memory
106
+ consumption so we suggest to enable it only if it is really needed.
107
+
108
+ Note that Node.js has a variety of issues with high-performance compression,
109
+ where increased concurrency, especially on Linux, can lead to [catastrophic
110
+ memory fragmentation][node-zlib-bug] and slow performance. If you intend to use
111
+ permessage-deflate in production, it is worthwhile to set up a test
112
+ representative of your workload and ensure Node.js/zlib will handle it with
113
+ acceptable performance and memory usage.
114
+
115
+ Tuning of permessage-deflate can be done via the options defined below. You can
116
+ also use `zlibDeflateOptions` and `zlibInflateOptions`, which is passed directly
117
+ into the creation of [raw deflate/inflate streams][node-zlib-deflaterawdocs].
118
+
119
+ See [the docs][ws-server-options] for more options.
120
+
121
+ ```js
122
+ import WebSocket, { WebSocketServer } from 'ws';
123
+
124
+ const wss = new WebSocketServer({
125
+ port: 8080,
126
+ perMessageDeflate: {
127
+ zlibDeflateOptions: {
128
+ // See zlib defaults.
129
+ chunkSize: 1024,
130
+ memLevel: 7,
131
+ level: 3
132
+ },
133
+ zlibInflateOptions: {
134
+ chunkSize: 10 * 1024
135
+ },
136
+ // Other options settable:
137
+ clientNoContextTakeover: true, // Defaults to negotiated value.
138
+ serverNoContextTakeover: true, // Defaults to negotiated value.
139
+ serverMaxWindowBits: 10, // Defaults to negotiated value.
140
+ // Below options specified as default values.
141
+ concurrencyLimit: 10, // Limits zlib concurrency for perf.
142
+ threshold: 1024 // Size (in bytes) below which messages
143
+ // should not be compressed if context takeover is disabled.
144
+ }
145
+ });
146
+ ```
147
+
148
+ The client will only use the extension if it is supported and enabled on the
149
+ server. To always disable the extension on the client, set the
150
+ `perMessageDeflate` option to `false`.
151
+
152
+ ```js
153
+ import WebSocket from 'ws';
154
+
155
+ const ws = new WebSocket('ws://www.host.com/path', {
156
+ perMessageDeflate: false
157
+ });
158
+ ```
159
+
160
+ ## Usage examples
161
+
162
+ ### Sending and receiving text data
163
+
164
+ ```js
165
+ import WebSocket from 'ws';
166
+
167
+ const ws = new WebSocket('ws://www.host.com/path');
168
+
169
+ ws.on('error', console.error);
170
+
171
+ ws.on('open', function open() {
172
+ ws.send('something');
173
+ });
174
+
175
+ ws.on('message', function message(data) {
176
+ console.log('received: %s', data);
177
+ });
178
+ ```
179
+
180
+ ### Sending binary data
181
+
182
+ ```js
183
+ import WebSocket from 'ws';
184
+
185
+ const ws = new WebSocket('ws://www.host.com/path');
186
+
187
+ ws.on('error', console.error);
188
+
189
+ ws.on('open', function open() {
190
+ const array = new Float32Array(5);
191
+
192
+ for (var i = 0; i < array.length; ++i) {
193
+ array[i] = i / 2;
194
+ }
195
+
196
+ ws.send(array);
197
+ });
198
+ ```
199
+
200
+ ### Simple server
201
+
202
+ ```js
203
+ import { WebSocketServer } from 'ws';
204
+
205
+ const wss = new WebSocketServer({ port: 8080 });
206
+
207
+ wss.on('connection', function connection(ws) {
208
+ ws.on('error', console.error);
209
+
210
+ ws.on('message', function message(data) {
211
+ console.log('received: %s', data);
212
+ });
213
+
214
+ ws.send('something');
215
+ });
216
+ ```
217
+
218
+ ### External HTTP/S server
219
+
220
+ ```js
221
+ import { createServer } from 'https';
222
+ import { readFileSync } from 'fs';
223
+ import { WebSocketServer } from 'ws';
224
+
225
+ const server = createServer({
226
+ cert: readFileSync('/path/to/cert.pem'),
227
+ key: readFileSync('/path/to/key.pem')
228
+ });
229
+ const wss = new WebSocketServer({ server });
230
+
231
+ wss.on('connection', function connection(ws) {
232
+ ws.on('error', console.error);
233
+
234
+ ws.on('message', function message(data) {
235
+ console.log('received: %s', data);
236
+ });
237
+
238
+ ws.send('something');
239
+ });
240
+
241
+ server.listen(8080);
242
+ ```
243
+
244
+ ### Multiple servers sharing a single HTTP/S server
245
+
246
+ ```js
247
+ import { createServer } from 'http';
248
+ import { WebSocketServer } from 'ws';
249
+
250
+ const server = createServer();
251
+ const wss1 = new WebSocketServer({ noServer: true });
252
+ const wss2 = new WebSocketServer({ noServer: true });
253
+
254
+ wss1.on('connection', function connection(ws) {
255
+ ws.on('error', console.error);
256
+
257
+ // ...
258
+ });
259
+
260
+ wss2.on('connection', function connection(ws) {
261
+ ws.on('error', console.error);
262
+
263
+ // ...
264
+ });
265
+
266
+ server.on('upgrade', function upgrade(request, socket, head) {
267
+ const { pathname } = new URL(request.url, 'wss://base.url');
268
+
269
+ if (pathname === '/foo') {
270
+ wss1.handleUpgrade(request, socket, head, function done(ws) {
271
+ wss1.emit('connection', ws, request);
272
+ });
273
+ } else if (pathname === '/bar') {
274
+ wss2.handleUpgrade(request, socket, head, function done(ws) {
275
+ wss2.emit('connection', ws, request);
276
+ });
277
+ } else {
278
+ socket.destroy();
279
+ }
280
+ });
281
+
282
+ server.listen(8080);
283
+ ```
284
+
285
+ ### Client authentication
286
+
287
+ ```js
288
+ import { createServer } from 'http';
289
+ import { WebSocketServer } from 'ws';
290
+
291
+ function onSocketError(err) {
292
+ console.error(err);
293
+ }
294
+
295
+ const server = createServer();
296
+ const wss = new WebSocketServer({ noServer: true });
297
+
298
+ wss.on('connection', function connection(ws, request, client) {
299
+ ws.on('error', console.error);
300
+
301
+ ws.on('message', function message(data) {
302
+ console.log(`Received message ${data} from user ${client}`);
303
+ });
304
+ });
305
+
306
+ server.on('upgrade', function upgrade(request, socket, head) {
307
+ socket.on('error', onSocketError);
308
+
309
+ // This function is not defined on purpose. Implement it with your own logic.
310
+ authenticate(request, function next(err, client) {
311
+ if (err || !client) {
312
+ socket.write('HTTP/1.1 401 Unauthorized\r\n\r\n');
313
+ socket.destroy();
314
+ return;
315
+ }
316
+
317
+ socket.removeListener('error', onSocketError);
318
+
319
+ wss.handleUpgrade(request, socket, head, function done(ws) {
320
+ wss.emit('connection', ws, request, client);
321
+ });
322
+ });
323
+ });
324
+
325
+ server.listen(8080);
326
+ ```
327
+
328
+ Also see the provided [example][session-parse-example] using `express-session`.
329
+
330
+ ### Server broadcast
331
+
332
+ A client WebSocket broadcasting to all connected WebSocket clients, including
333
+ itself.
334
+
335
+ ```js
336
+ import WebSocket, { WebSocketServer } from 'ws';
337
+
338
+ const wss = new WebSocketServer({ port: 8080 });
339
+
340
+ wss.on('connection', function connection(ws) {
341
+ ws.on('error', console.error);
342
+
343
+ ws.on('message', function message(data, isBinary) {
344
+ wss.clients.forEach(function each(client) {
345
+ if (client.readyState === WebSocket.OPEN) {
346
+ client.send(data, { binary: isBinary });
347
+ }
348
+ });
349
+ });
350
+ });
351
+ ```
352
+
353
+ A client WebSocket broadcasting to every other connected WebSocket clients,
354
+ excluding itself.
355
+
356
+ ```js
357
+ import WebSocket, { WebSocketServer } from 'ws';
358
+
359
+ const wss = new WebSocketServer({ port: 8080 });
360
+
361
+ wss.on('connection', function connection(ws) {
362
+ ws.on('error', console.error);
363
+
364
+ ws.on('message', function message(data, isBinary) {
365
+ wss.clients.forEach(function each(client) {
366
+ if (client !== ws && client.readyState === WebSocket.OPEN) {
367
+ client.send(data, { binary: isBinary });
368
+ }
369
+ });
370
+ });
371
+ });
372
+ ```
373
+
374
+ ### Round-trip time
375
+
376
+ ```js
377
+ import WebSocket from 'ws';
378
+
379
+ const ws = new WebSocket('wss://websocket-echo.com/');
380
+
381
+ ws.on('error', console.error);
382
+
383
+ ws.on('open', function open() {
384
+ console.log('connected');
385
+ ws.send(Date.now());
386
+ });
387
+
388
+ ws.on('close', function close() {
389
+ console.log('disconnected');
390
+ });
391
+
392
+ ws.on('message', function message(data) {
393
+ console.log(`Round-trip time: ${Date.now() - data} ms`);
394
+
395
+ setTimeout(function timeout() {
396
+ ws.send(Date.now());
397
+ }, 500);
398
+ });
399
+ ```
400
+
401
+ ### Use the Node.js streams API
402
+
403
+ ```js
404
+ import WebSocket, { createWebSocketStream } from 'ws';
405
+
406
+ const ws = new WebSocket('wss://websocket-echo.com/');
407
+
408
+ const duplex = createWebSocketStream(ws, { encoding: 'utf8' });
409
+
410
+ duplex.on('error', console.error);
411
+
412
+ duplex.pipe(process.stdout);
413
+ process.stdin.pipe(duplex);
414
+ ```
415
+
416
+ ### Other examples
417
+
418
+ For a full example with a browser client communicating with a ws server, see the
419
+ examples folder.
420
+
421
+ Otherwise, see the test cases.
422
+
423
+ ## FAQ
424
+
425
+ ### How to get the IP address of the client?
426
+
427
+ The remote IP address can be obtained from the raw socket.
428
+
429
+ ```js
430
+ import { WebSocketServer } from 'ws';
431
+
432
+ const wss = new WebSocketServer({ port: 8080 });
433
+
434
+ wss.on('connection', function connection(ws, req) {
435
+ const ip = req.socket.remoteAddress;
436
+
437
+ ws.on('error', console.error);
438
+ });
439
+ ```
440
+
441
+ When the server runs behind a proxy like NGINX, the de-facto standard is to use
442
+ the `X-Forwarded-For` header.
443
+
444
+ ```js
445
+ wss.on('connection', function connection(ws, req) {
446
+ const ip = req.headers['x-forwarded-for'].split(',')[0].trim();
447
+
448
+ ws.on('error', console.error);
449
+ });
450
+ ```
451
+
452
+ ### How to detect and close broken connections?
453
+
454
+ Sometimes, the link between the server and the client can be interrupted in a
455
+ way that keeps both the server and the client unaware of the broken state of the
456
+ connection (e.g. when pulling the cord).
457
+
458
+ In these cases, ping messages can be used as a means to verify that the remote
459
+ endpoint is still responsive.
460
+
461
+ ```js
462
+ import { WebSocketServer } from 'ws';
463
+
464
+ function heartbeat() {
465
+ this.isAlive = true;
466
+ }
467
+
468
+ const wss = new WebSocketServer({ port: 8080 });
469
+
470
+ wss.on('connection', function connection(ws) {
471
+ ws.isAlive = true;
472
+ ws.on('error', console.error);
473
+ ws.on('pong', heartbeat);
474
+ });
475
+
476
+ const interval = setInterval(function ping() {
477
+ wss.clients.forEach(function each(ws) {
478
+ if (ws.isAlive === false) return ws.terminate();
479
+
480
+ ws.isAlive = false;
481
+ ws.ping();
482
+ });
483
+ }, 30000);
484
+
485
+ wss.on('close', function close() {
486
+ clearInterval(interval);
487
+ });
488
+ ```
489
+
490
+ Pong messages are automatically sent in response to ping messages as required by
491
+ the spec.
492
+
493
+ Just like the server example above, your clients might as well lose connection
494
+ without knowing it. You might want to add a ping listener on your clients to
495
+ prevent that. A simple implementation would be:
496
+
497
+ ```js
498
+ import WebSocket from 'ws';
499
+
500
+ function heartbeat() {
501
+ clearTimeout(this.pingTimeout);
502
+
503
+ // Use `WebSocket#terminate()`, which immediately destroys the connection,
504
+ // instead of `WebSocket#close()`, which waits for the close timer.
505
+ // Delay should be equal to the interval at which your server
506
+ // sends out pings plus a conservative assumption of the latency.
507
+ this.pingTimeout = setTimeout(() => {
508
+ this.terminate();
509
+ }, 30000 + 1000);
510
+ }
511
+
512
+ const client = new WebSocket('wss://websocket-echo.com/');
513
+
514
+ client.on('error', console.error);
515
+ client.on('open', heartbeat);
516
+ client.on('ping', heartbeat);
517
+ client.on('close', function clear() {
518
+ clearTimeout(this.pingTimeout);
519
+ });
520
+ ```
521
+
522
+ ### How to connect via a proxy?
523
+
524
+ Use a custom `http.Agent` implementation like [https-proxy-agent][] or
525
+ [socks-proxy-agent][].
526
+
527
+ ## Changelog
528
+
529
+ We're using the GitHub [releases][changelog] for changelog entries.
530
+
531
+ ## License
532
+
533
+ [MIT](LICENSE)
534
+
535
+ [`buffer.isutf8()`]: https://nodejs.org/api/buffer.html#bufferisutf8input
536
+ [bufferutil]: https://github.com/websockets/bufferutil
537
+ [changelog]: https://github.com/websockets/ws/releases
538
+ [client-report]: http://websockets.github.io/ws/autobahn/clients/
539
+ [https-proxy-agent]: https://github.com/TooTallNate/node-https-proxy-agent
540
+ [node-zlib-bug]: https://github.com/nodejs/node/issues/8871
541
+ [node-zlib-deflaterawdocs]:
542
+ https://nodejs.org/api/zlib.html#zlib_zlib_createdeflateraw_options
543
+ [permessage-deflate]: https://tools.ietf.org/html/rfc7692
544
+ [server-report]: http://websockets.github.io/ws/autobahn/servers/
545
+ [session-parse-example]: ./examples/express-session-parse
546
+ [socks-proxy-agent]: https://github.com/TooTallNate/node-socks-proxy-agent
547
+ [utf-8-validate]: https://github.com/websockets/utf-8-validate
548
+ [ws-server-options]: ./doc/ws.md#new-websocketserveroptions-callback
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ module.exports = function () {
4
+ throw new Error(
5
+ 'ws does not work in the browser. Browser clients must use the native ' +
6
+ 'WebSocket object'
7
+ );
8
+ };
@@ -0,0 +1,13 @@
1
+ 'use strict';
2
+
3
+ const WebSocket = require('./lib/websocket');
4
+
5
+ WebSocket.createWebSocketStream = require('./lib/stream');
6
+ WebSocket.Server = require('./lib/websocket-server');
7
+ WebSocket.Receiver = require('./lib/receiver');
8
+ WebSocket.Sender = require('./lib/sender');
9
+
10
+ WebSocket.WebSocket = WebSocket;
11
+ WebSocket.WebSocketServer = WebSocket.Server;
12
+
13
+ module.exports = WebSocket;
@@ -0,0 +1,131 @@
1
+ 'use strict';
2
+
3
+ const { EMPTY_BUFFER } = require('./constants');
4
+
5
+ const FastBuffer = Buffer[Symbol.species];
6
+
7
+ /**
8
+ * Merges an array of buffers into a new buffer.
9
+ *
10
+ * @param {Buffer[]} list The array of buffers to concat
11
+ * @param {Number} totalLength The total length of buffers in the list
12
+ * @return {Buffer} The resulting buffer
13
+ * @public
14
+ */
15
+ function concat(list, totalLength) {
16
+ if (list.length === 0) return EMPTY_BUFFER;
17
+ if (list.length === 1) return list[0];
18
+
19
+ const target = Buffer.allocUnsafe(totalLength);
20
+ let offset = 0;
21
+
22
+ for (let i = 0; i < list.length; i++) {
23
+ const buf = list[i];
24
+ target.set(buf, offset);
25
+ offset += buf.length;
26
+ }
27
+
28
+ if (offset < totalLength) {
29
+ return new FastBuffer(target.buffer, target.byteOffset, offset);
30
+ }
31
+
32
+ return target;
33
+ }
34
+
35
+ /**
36
+ * Masks a buffer using the given mask.
37
+ *
38
+ * @param {Buffer} source The buffer to mask
39
+ * @param {Buffer} mask The mask to use
40
+ * @param {Buffer} output The buffer where to store the result
41
+ * @param {Number} offset The offset at which to start writing
42
+ * @param {Number} length The number of bytes to mask.
43
+ * @public
44
+ */
45
+ function _mask(source, mask, output, offset, length) {
46
+ for (let i = 0; i < length; i++) {
47
+ output[offset + i] = source[i] ^ mask[i & 3];
48
+ }
49
+ }
50
+
51
+ /**
52
+ * Unmasks a buffer using the given mask.
53
+ *
54
+ * @param {Buffer} buffer The buffer to unmask
55
+ * @param {Buffer} mask The mask to use
56
+ * @public
57
+ */
58
+ function _unmask(buffer, mask) {
59
+ for (let i = 0; i < buffer.length; i++) {
60
+ buffer[i] ^= mask[i & 3];
61
+ }
62
+ }
63
+
64
+ /**
65
+ * Converts a buffer to an `ArrayBuffer`.
66
+ *
67
+ * @param {Buffer} buf The buffer to convert
68
+ * @return {ArrayBuffer} Converted buffer
69
+ * @public
70
+ */
71
+ function toArrayBuffer(buf) {
72
+ if (buf.length === buf.buffer.byteLength) {
73
+ return buf.buffer;
74
+ }
75
+
76
+ return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.length);
77
+ }
78
+
79
+ /**
80
+ * Converts `data` to a `Buffer`.
81
+ *
82
+ * @param {*} data The data to convert
83
+ * @return {Buffer} The buffer
84
+ * @throws {TypeError}
85
+ * @public
86
+ */
87
+ function toBuffer(data) {
88
+ toBuffer.readOnly = true;
89
+
90
+ if (Buffer.isBuffer(data)) return data;
91
+
92
+ let buf;
93
+
94
+ if (data instanceof ArrayBuffer) {
95
+ buf = new FastBuffer(data);
96
+ } else if (ArrayBuffer.isView(data)) {
97
+ buf = new FastBuffer(data.buffer, data.byteOffset, data.byteLength);
98
+ } else {
99
+ buf = Buffer.from(data);
100
+ toBuffer.readOnly = false;
101
+ }
102
+
103
+ return buf;
104
+ }
105
+
106
+ module.exports = {
107
+ concat,
108
+ mask: _mask,
109
+ toArrayBuffer,
110
+ toBuffer,
111
+ unmask: _unmask
112
+ };
113
+
114
+ /* istanbul ignore else */
115
+ if (!process.env.WS_NO_BUFFER_UTIL) {
116
+ try {
117
+ const bufferUtil = require('bufferutil');
118
+
119
+ module.exports.mask = function (source, mask, output, offset, length) {
120
+ if (length < 48) _mask(source, mask, output, offset, length);
121
+ else bufferUtil.mask(source, mask, output, offset, length);
122
+ };
123
+
124
+ module.exports.unmask = function (buffer, mask) {
125
+ if (buffer.length < 32) _unmask(buffer, mask);
126
+ else bufferUtil.unmask(buffer, mask);
127
+ };
128
+ } catch (e) {
129
+ // Continue regardless of the error.
130
+ }
131
+ }