NVIDIA CloudXR.js SDK Brings GPU-Rendered XR Streaming to Web Browsers
Caroline Bishop Mar 31, 2026 17:52
NVIDIA releases CloudXR.js JavaScript SDK enabling developers to stream high-fidelity VR/AR experiences directly to browsers without native app installation.
NVIDIA has officially launched CloudXR.js, a JavaScript SDK that lets developers stream GPU-rendered virtual and augmented reality content directly to web browsers. The release eliminates the traditional requirement for native app development, device-specific builds, and app store distribution for enterprise XR applications.
The SDK, now at version 6.1.0 and generally available through NVIDIA NGC, works by establishing a WebSocket connection between a browser and CloudXR Runtime running on an NVIDIA GPU-equipped server. The server captures stereo frames, encodes them using hardware-accelerated AV1, H.265, or H.264 codecs, and streams them to clients at up to 120 frames per second.
What This Actually Does
Think of it as cloud gaming, but for XR headsets. The heavy rendering happens on NVIDIA RTX hardware remotely, while the headset just receives and displays the video stream. Users access experiences through a URL rather than downloading anything.
Compatible devices include Meta Quest 2, 3, and 3s running OS v79 or later, plus Pico 4 Ultra on Pico OS 15.4.4U and above. Desktop browsers work too when paired with an emulator for development purposes.
Network requirements are fairly demanding: NVIDIA recommends WiFi 6 or 6E with sub-20ms latency and 100+ Mbps bandwidth for acceptable performance.
Integration Points
CloudXR.js plays nicely with several NVIDIA products. Omniverse Kit SDK 109.0.2 and later has the CloudXR WebRTC runtime built in, making it straightforward to stream digital twin scenes for architecture reviews or industrial training. Isaac Lab users can build robot teleoperation workflows where operators control simulated robots through hand tracking.
For developers wanting to test without committing to NVIDIA's ecosystem, the open-source LÖVR framework offers a lightweight alternative. Launch it with the --webrtc flag and you've got a working server.
The SDK itself is framework-agnostic. It integrates with vanilla WebGL, React Three Fiber, or any WebXR-compatible library. Sample clients for both WebGL and React are available on GitHub.
Production Considerations
Enterprise deployments require some networking setup. The SDK includes Docker-based HAProxy configuration for TLS termination, and documentation covers NGINX Ingress for Kubernetes environments with load balancing across multiple CloudXR servers.
Firewall rules need TCP port 49100 for signaling, UDP port 47998 for media streaming, and TCP port 48322 if using the WSS proxy for HTTPS.
The entire API surface centers on a single entry point called createSession. Developers configure connection parameters, rendering resolution (must be multiples of 16), and lifecycle callbacks. From there, two calls per frame handle the streaming: one sends tracking data to the server, the other renders the received frame.
For web developers who've avoided XR because of the native development overhead, CloudXR.js lowers the barrier considerably. Whether that translates to meaningful enterprise adoption depends on whether organizations can stomach the network infrastructure requirements and GPU server costs. The SDK itself is free to download from NVIDIA NGC.
Image source: Shutterstock