websockify.js
v1.0.4
Published
A websockify written in javascript, But with 2 Converting Method.
Downloads
4
Maintainers
Readme
websockify.js
A websockify written in javascript, But with 2 Converting Method.
API
module.tcp
A function that convert TCP into WS. There's a required parameter's:
target
[Object] A TCP Server target to convert toforwardTo
[Object] A websocketnew WebSocket(....)
.
Example
const { tcp } = require('websockify.js');
tcp({
hostname: 'localhost',
port: 8080
}, { port: 9090 });
// Now forwarding tcp://localhost:8080 to ws://localhost:9090
module.ws
A function that convert WS into TCP. There's a required parameter's:
target
[String] A Websocket Server target to convert toforwardToPort
[Number/String] Forward to port?forwardToHostname
[String] Forward to hostname?
Example
const { ws } = require('websockify.js');
ws('ws://localhost:8080', 9090, 'localhost');
// Now forwarding ws://localhost:8080 to tcp://localhost:9090