guacamole-lite
Node.js library for creating Guacamole-compatible servers. Guacamole is a RDP/VNC/SSH/Telnet client for HTML5 browsers.
File Explorer
Download Latest Version (.zip)- ci.yml
- advanced-configuration.md
- architecture.png
- advanced_configuration.js
- advanced_server.js
- basic_server.js
- ClientExample.jsx
- encrypt_token.js
- encrypt_token.php
- encrypt_token.py
- expressjs.js
- fastify.js
- GuacamoleParser.js
- ClientConnection.js
- Crypt.js
- GuacdClient.js
- Logger.js
- Server.js
- update-vendors.js
- ClientConnection.basic.test.js
- ClientConnection.configuration.test.js
- ClientConnection.encryption.test.js
- ClientConnection.errors.test.js
- ClientConnection.joinConnection.test.js
- ClientConnection.lifecycle.test.js
- ClientConnectionTestHelpers.js
- MockGuacdServer.js
- MockWebSocket.js
- testHelpers.js
- AsyncSessionRegistry.test.js
- Crypt.test.js
- GuacdClient.test.js
- ServerDynamicRouting.test.js
- WebSocketServer.test.js
- index.html
- Dockerfile
- package.json
- server.js
- .xsession
- start-desktop.sh
- Dockerfile
- style.css
- main.js
- token-generator.js
- dot.gif
- index.html
- Dockerfile
- Dockerfile
- start.js
- docker-compose.yml
- Makefile
- .gitignore
- CHANGELOG.md
- index.js
- LICENSE
- package.json
- README.md
# Installation Guide
git clone https://github.com/vadimpronin/guacamole-lite
Downloads the entire project code from GitHub to your computer.
cd guacamole-lite
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run --name guacd -d -p 4822:4822 guacamole/guacd
Runs the built image as an actual container.
Pulled directly from this repo's README.
3. Node.js
Easynpm install guacamole-lite --save
Downloads and installs the libraries listed in package.json.
npm test
Type this command into your terminal and run it.
npm install
Downloads and installs the libraries listed in package.json.
npm run update-vendors
Type this command into your terminal and run it.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make up
Compiles the code based on the generated build configuration to produce an executable.
make down
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
