A websockify written in javascript, But with 2 Converting Method.
npm install websockify.jstarget[Object] A TCP Server target to convert toforwardTo[Object] A websocket new WebSocket(....).#### Example
``js
const { tcp } = require('websockify.js');
tcp({
hostname: 'localhost',
port: 8080
}, { port: 9090 });
// Now forwarding tcp://localhost:8080 to ws://localhost:9090
`
[String] A Websocket Server target to convert to
- forwardToPort[Number/String] Forward to port?
- forwardToHostname[String] Forward to hostname?#### Example
`js
const { ws } = require('websockify.js');ws('ws://localhost:8080', 9090, 'localhost');
// Now forwarding ws://localhost:8080 to tcp://localhost:9090
``