rustdesk web terminal, support rustdesk terminal, ttyd backend, webtty, file transfer, view camera, screen on remote peer
https://github.com/lichon/rustdesk-web-ts.git
Follow these instructions to get a local copy up and running for development and testing purposes.
git clone https://github.com/lichon/rustdesk-web-ts.git
cd rustdesk-web-ts
pnpm install
To run the application in development mode:
pnpm dev
This will start a local development server, typically at http://localhost:80.
To create a production build of the application:
pnpm build
The build artifacts will be stored in the dist/ directory.
This project is configured for deployment to Cloudflare Workers.
To deploy the application, run:
pnpm deploy
This will build the project and deploy it using the Wrangler CLI.
pnpm dev: Runs the app in development mode.pnpm build: Builds the app for production.pnpm lint: Lints the source code using ESLint.pnpm preview: Serves the production build locally for preview.pnpm deploy: Deploys the application to Cloudflare Workers.pnpm cf-typegen: Generates types for Cloudflare Workers.