991 B
991 B
1.7.1
- Fixed: two errors were emitted when trying to sendText to a closed connection while there was another pending binary write operation.
1.7.0
- Added: emit
Connection#errorevent on invalid handshake response with the reason why it was rejected - Added: support for protocol negotiation
- Added:
validProtocolsandselectProtocoloptions tows.createServer() - Added:
protocolsoption tows.connect - Added:
Connection#protocolsandConnection#protocol
1.6.0
- Added:
Server#closeas a short hand forServer#socket.close
1.5.0
- Added:
Connection#sendas a short hand forConnection#sendTextorConnection#sendBinary, depending on the data type (string or Buffer)
1.4.1
- Added: example to README
1.4.0
- Added:
extraHeadersoption inws.connect(URL, [options], [callback])to let one add custom headers to the HTTP handshake request
1.3.0
- Added:
Connection#sendPing([data='']) - Added:
pong(data)event