다운로드 · 시작하기

제품 받기

모든 제품은 무료 계층이 그대로 동작합니다 — SDK는 그냥 설치하고, 서버는 5 피어까지 무료로 실행하세요. 유료 기능은 구매한 라이선스/키로 활성화됩니다(재설치 불필요).

ConnectKit 무료 · SDK

NAT 통과·종단간 암호화 연결 .NET SDK. 무료·무게이트이며 nuget.org에 게시됩니다.

dotnet add package RemoteViewer.ConnectKit

SessionKit 무료 계층

세션·영상·오디오 상위 계층 .NET SDK. Standard는 무료, Premium 기능만 키로 활성화합니다(구매 시 이메일로 키 발송).

dotnet add package RemoteViewer.SessionKit

using RemoteViewer.SessionKit;

// 앱 시작 시 1회 — 구매한 키로 Premium 활성화
SessionKitLicense.Activate("<구매한-라이선스-키>");

DeviceKit 무료 · SDK

ConnectKit 연결 위의 디바이스 프로토콜 .NET SDK — IoT·RMM·로보틱스·산업용을 RPC·텔레메트리·원격실행·펌웨어 배포로 다룹니다. 클라이언트 무료. 제품 소개 참고.

dotnet add package RemoteViewer.DeviceKit             # 코어(RPC·Pub/Sub·스트리밍·존재감·서브채널)
dotnet add package RemoteViewer.DeviceKit.ConnectKit  # ConnectKit 종단간 암호화 파이프 위에서 동작

# 필요한 프로파일/브리지만 추가:
#   .Iot · .Rmm · .Robotics · .Industrial · .Files · .Codec.Cbor · .Bridge.Mqtt · .Bridge.OpcUa · .Bridge.Dds

ServerKit 5 피어 무료

자체호스팅 코디네이터·릴레이·게이트웨이. 컨테이너 이미지로 배포하며, 최대 5 피어까지 무료로 동작합니다.

# 이미지 받기 (Docker Hub)
docker pull joohwanatyu/serverkit-coordinator:latest
docker pull joohwanatyu/serverkit-gateway:latest
docker pull joohwanatyu/serverkit-portal:latest

# 5분 시작 — 코디네이터 실행
docker run -d --name serverkit-coordinator \
  -p 7000:7000/udp -p 9090:9090 \
  joohwanatyu/serverkit-coordinator:latest

더 많은 피어·Premium 기능은 라이선스를 구매해 서버에서 활성화 코드로 켭니다. 자세한 설치·운영은 배포본에 포함된 문서와 5분 시작 가이드를 참고하세요.

ViewerGateway

설치 없이 브라우저에서 무인 장치를 보고 제어하는 웹 뷰어 브리지. 고객 신뢰 경계 안에서 ConnectKit 종단간 세션을 종료·디코드하여 프레임을 브라우저로 재전송합니다(암호 바이트만 중계하는 ServerKit 게이트웨이와는 다른 역할). SessionKit 뷰어를 구동하므로 Suite 계층 기능입니다.

# 이미지 받기 (Docker Hub)
docker pull joohwanatyu/serverkit-viewergateway:latest

# TLS는 리버스 프록시에서 종료 — 8095 노출
docker run -d --name serverkit-viewergateway \
  -p 8095:8095 \
  joohwanatyu/serverkit-viewergateway:latest

운영에는 RBAC 운영자 키·단기 토큰·기기별 시크릿·감사 로그를 갖춘 하드닝 모드를 권장합니다. 설정(SVK_VG_*)은 배포본 문서를 참고하세요.

Suite

Suite 구매 시 ServerKit 활성화 코드SessionKit 키를 함께 받습니다. 각각 서버와 앱에서 활성화하면 됩니다. ConnectKit은 무료로 포함됩니다.

모든 배포물은 컴파일된 산출물이며 소스는 공개되지 않습니다. 무료 계층으로 평가 후, 필요 시 라이선스로 확장하세요. 특정 버전이 아직 안 보이면 문의주세요.
Downloads · Get started

Get the products

Every product's free tier just works — install the SDKs, run the server free for up to 5 peers. Paid features unlock with a purchased license/key (no reinstall).

ConnectKit Free · SDK

The NAT-traversal, end-to-end-encrypted connection .NET SDK. Free, un-gated, on nuget.org.

dotnet add package RemoteViewer.ConnectKit

SessionKit Free tier

The session / video / audio higher-layer .NET SDK. Standard is free; Premium features unlock with a key (emailed on purchase).

dotnet add package RemoteViewer.SessionKit

using RemoteViewer.SessionKit;

// Once at app start — activate Premium with your purchased key
SessionKitLicense.Activate("<your-license-key>");

DeviceKit Free · SDK

The device-protocol .NET SDK on top of a ConnectKit connection — IoT, RMM, robotics and industrial via RPC, telemetry, remote exec and firmware delivery. Free client. See the product page.

dotnet add package RemoteViewer.DeviceKit             # core (RPC / pub-sub / streaming / presence / sub-channels)
dotnet add package RemoteViewer.DeviceKit.ConnectKit  # ride a ConnectKit end-to-end-encrypted pipe

# add only the profiles/bridges you need:
#   .Iot · .Rmm · .Robotics · .Industrial · .Files · .Codec.Cbor · .Bridge.Mqtt · .Bridge.OpcUa · .Bridge.Dds

ServerKit Free · 5 peers

The self-hosted coordinator, relay and gateway. Shipped as container images; free for up to 5 peers.

# pull the images (Docker Hub)
docker pull joohwanatyu/serverkit-coordinator:latest
docker pull joohwanatyu/serverkit-gateway:latest
docker pull joohwanatyu/serverkit-portal:latest

# five-minute start — run the coordinator
docker run -d --name serverkit-coordinator \
  -p 7000:7000/udp -p 9090:9090 \
  joohwanatyu/serverkit-coordinator:latest

More peers and Premium features turn on with a license activation code on the server. See the distribution's docs and five-minute guide for install & operation.

ViewerGateway

A web-viewer bridge: watch and control an unattended device from a plain browser, no client install. Inside your trust boundary it terminates and decodes the ConnectKit end-to-end session and re-serves frames to the browser (distinct from the opaque ServerKit gateway, which only relays encrypted bytes). It drives a SessionKit viewer, so it is a Suite-tier feature.

# pull the image (Docker Hub)
docker pull joohwanatyu/serverkit-viewergateway:latest

# TLS terminates at a reverse proxy — expose 8095
docker run -d --name serverkit-viewergateway \
  -p 8095:8095 \
  joohwanatyu/serverkit-viewergateway:latest

For operations prefer hardened mode (RBAC operator keys, short-lived tokens, per-device secrets, audit trail). See the distribution docs for configuration (SVK_VG_*).

Suite

Buying Suite gives you both a ServerKit activation code and a SessionKit key — activate them on the server and in the app. ConnectKit is included free.

All downloads are compiled artifacts; source is not published. Evaluate on the free tier, then scale with a license. If a version isn't listed yet, contact us.