An open API service indexing awesome lists of open source software.

https://github.com/e9x/websockify


https://github.com/e9x/websockify

novnc typescript websockify

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# websockify

A port of [websockify-js](https://github.com/novnc/websockify-js) to modern NodeJS and TypeScript.

npm version

## Usage

```sh
Usage: websockify [options]

Creates a WebSocket server on : and forwards traffic to a TCP socket on :.

Options:
-s, --source

:
-l, --listen
:
-h, --help display help for command
```

### VNC on 5901, WS on 9999

```sh
npx @e9x/websockify --source 127.0.0.1:5901 --listen 127.0.0.1:9999
```

### With debugging:

```sh
DEBUG=websockify npx @e9x/websockify --source 127.0.0.1:5901 --listen 127.0.0.1:9999
```