https://github.com/e9x/websockify
https://github.com/e9x/websockify
novnc typescript websockify
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/e9x/websockify
- Owner: e9x
- License: lgpl-3.0
- Created: 2023-02-20T01:47:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T02:40:10.000Z (almost 3 years ago)
- Last Synced: 2024-04-28T13:41:10.213Z (over 1 year ago)
- Topics: novnc, typescript, websockify
- Language: TypeScript
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# websockify
A port of [websockify-js](https://github.com/novnc/websockify-js) to modern NodeJS and TypeScript.
## 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
```