JetKVM - Control any computer remotely
kvm
Go to file
2025-06-26 00:30:00 +09:00
.devcontainer chore: add VSCode extensions for improved development environment (#509) 2025-05-23 14:38:15 +02:00
.github chore: upgrade go from 1.24.3 to 1.24.4 (#600) 2025-06-12 08:53:58 +02:00
.vscode chore: add VSCode extensions for improved development environment (#509) 2025-05-23 14:38:15 +02:00
bin
cmd
internal Merge remote-tracking branch 'upstream/dev' into feat/usb-audio 2025-06-22 00:36:01 +09:00
resource
ui Merge remote-tracking branch 'upstream/dev' into feat/usb-audio 2025-06-22 00:36:01 +09:00
.gitignore
.golangci.yml refactor: remove init functions (#489) 2025-05-22 10:29:16 +02:00
audio.go feat: use native jetkvm-audio 2025-06-26 00:30:00 +09:00
block_device_linux.go
block_device_notlinux.go
block_device.go
cloud.go fix: Update metric naming (#602) 2025-06-12 13:41:43 +02:00
CODE_OF_CONDUCT.md
config.go Merge remote-tracking branch 'upstream/dev' into feat/usb-audio 2025-06-22 00:36:01 +09:00
dev_deploy.sh chore: use pure Go resolver and remove CGO_ENABLED=0 (#603) 2025-06-12 14:04:51 +02:00
display.go fix: the screen doesn't dim or turn off 2025-06-03 01:28:14 +02:00
fuse.go
go.mod build(deps): bump github.com/hanwen/go-fuse/v2 from 2.5.1 to 2.8.0 (#590) 2025-06-12 08:50:14 +02:00
go.sum build(deps): bump github.com/hanwen/go-fuse/v2 from 2.5.1 to 2.8.0 (#590) 2025-06-12 08:50:14 +02:00
hw.go
jiggler.go refactor: remove init functions (#489) 2025-05-22 10:29:16 +02:00
jsonrpc.go feat: add local web server loopback mode configuration (#511) 2025-05-27 17:28:51 +02:00
LICENSE
log.go
main.go feat: use native jetkvm-audio 2025-06-26 00:30:00 +09:00
Makefile build: allow the versions in the Makefile to be overwritten with ENV variables (#619) 2025-06-16 11:30:57 +02:00
mdns.go
native_linux.go
native_notlinux.go
native.go feat: use native jetkvm-audio 2025-06-26 00:30:00 +09:00
network.go chore(mDNS): ensure the mDNS mode is set every time network state changes (#624) 2025-06-19 09:29:21 +02:00
ota.go chore: always return local version if update check fails (#485) 2025-05-20 14:57:57 +02:00
prometheus.go
publish_source.sh
README.md
remote_mount.go
serial.go
terminal.go fix: Log spam when using a web terminal #547 (#550) 2025-06-03 01:51:30 +02:00
timesync.go
usb_mass_storage.go
usb.go feat: sync keyboard led status (#502) 2025-05-23 00:12:18 +02:00
video.go
web_tls.go
web.go feat: add local web server loopback mode configuration (#511) 2025-05-27 17:28:51 +02:00
webrtc.go feat: use native jetkvm-audio 2025-06-26 00:30:00 +09:00
wol.go

JetKVM is a high-performance, open-source KVM over IP (Keyboard, Video, Mouse) solution designed for efficient remote management of computers, servers, and workstations. Whether you're dealing with boot failures, installing a new operating system, adjusting BIOS settings, or simply taking control of a machine from afar, JetKVM provides the tools to get it done effectively.

Features

  • Ultra-low Latency - 1080p@60FPS video with 30-60ms latency using H.264 encoding. Smooth mouse and keyboard interaction for responsive remote control.
  • Free & Optional Remote Access - Remote management via JetKVM Cloud using WebRTC.
  • Open-source software - Written in Golang on Linux. Easily customizable through SSH access to the JetKVM device.

Contributing

We welcome contributions from the community! Whether it's improving the firmware, adding new features, or enhancing documentation, your input is valuable. We also have some rules and taboos here, so please read this page and our Code of Conduct carefully.

I need help

The best place to search for answers is our Documentation. If you can't find the answer there, check our Discord Server.

I want to report an issue

If you've found an issue and want to report it, please check our Issues page. Make sure the description contains information about the firmware version you're using, your platform, and a clear explanation of the steps to reproduce the issue.

Development

JetKVM is written in Go & TypeScript. with some bits and pieces written in C. An intermediate level of Go & TypeScript knowledge is recommended for comfortable programming.

The project contains two main parts, the backend software that runs on the KVM device and the frontend software that is served by the KVM device, and also the cloud.

For most of local device development, all you need is to use the ./dev_deploy.sh script. It will build the frontend and backend and deploy them to the local KVM device. Run ./dev_deploy.sh --help for more information.

Backend

The backend is written in Go and is responsible for the KVM device management, the cloud API and the cloud web.

Frontend

The frontend is written in React and TypeScript and is served by the KVM device. It has three build targets: device, development and production. Development is used for development of the cloud version on your local machine, device is used for building the frontend for the KVM device and production is used for building the frontend for the cloud.