lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | 4 年之前 | |
---|---|---|
.. | ||
dist | 4 年之前 | |
LICENSE | 4 年之前 | |
README.md | 4 年之前 | |
package.json | 4 年之前 |
The safe way to handle the
connect
socket event
Once you receive the socket, it may be already connected (or disconnected).
To avoid checking that, use defer-to-connect
. It’ll do that for you.
const deferToConnect = require('defer-to-connect');
deferToConnect(socket, () => {
console.log('Connected!');
});
Calls connectListener()
when connected.
An object representing connect
, secureConnect
and close
properties.
Calls connect()
when the socket is connected.
Calls secureConnect()
when the socket is securely connected.
Calls close()
when the socket is destroyed.
MIT