This is a reimplementation of the Rustdesk client designed to be embeddable into existing applications.
To use, add a canvas to the DOM and pass a reference to it when opening a connection.
const connection = await connect({
host: "",
key: "",
remoteId: "",
remotePassword: "",
canvas,
});
- Add a
.env
file with the appropriate values. - Run the
dev
script.