Now that you have a working IWSDK project, it’s time to launch it and see it in action! This chapter covers how to run your development server and test your WebXR experience using both browser emulation and a physical VR headset.
Getting Your Project Running
First, let’s navigate to your project and get the development server started.
Navigate to Your Project
Open your terminal and navigate to the project folder you created in Chapter 1:
cd my-iwsdk-app # Replace with your actual project name
Install Dependencies (If Needed)
If you chose “No” when asked to install dependencies during project creation, install them now:
npm install
This will install all the necessary packages. If you already installed dependencies during project creation, you can skip this step.
Launch the Development Server
Start your development server:
npm run dev
You should see output similar to:
VITE v7.1.4 ready in 1234 ms
➜ Local: https://localhost:5173/
➜ Network: https://192.168.1.100:5173/
➜ press h + enter to show help
Or, if you prefer a CLI summary after startup:
npx iwsdk dev status
::: warning HTTPS Required
Notice that the URL uses HTTPS (not HTTP). This is required for WebXR to work - browsers only allow WebXR on secure origins. IWSDK generates and caches a locally generated development certificate without installing a certificate authority or changing your operating-system trust store. The managed browser accepts it automatically; a physical headset shows its normal certificate warning, which you should accept to continue.
:::
Your development server is now running and ready for testing!
Testing Your Project
Now that your development server is running, you can test your WebXR experience in two ways: with a physical headset for the full immersive experience, or on your desktop using IWER emulation.
Option 1: Testing with a Physical Headset
If you have access to a VR headset, this provides the best testing experience for your WebXR application.
Recommended Headset
We recommend using a Meta Quest 3 or Quest 3S for development, because this tutorial is verified with those devices.
Testing on Meta Quest
The Meta Quest series has excellent WebXR support built into the headset’s browser:
You can access the local development server from your XR headset using one of two methods: via your computer’s IP address or by using ADB with port forwarding.
Method 1: Access via IP Address (Recommended)
On most home networks, you can access the local server directly. Your headset must be connected to the same Wi-Fi network as your computer.
Put on your headset and navigate to the browser app
Find your computer’s IP address in the Vite dev server output (look for the “Network” URL)
Example output: ➜ Network: https://192.168.1.100:5173/
npx iwsdk dev status also reports the current runtime URL
Enter the development URL in your headset’s browser using the reported network host and port, for example https://192.168.1.100:5173
Accept the certificate warning (this is normal for local development with self-signed certificates)
Click “Enter XR” when the page loads
Method 2: Access via ADB Port Forwarding (Fallback)
If accessing via IP address doesn’t work due to network restrictions or firewall settings (common on corporate networks), use ADB (Android Debug Bridge) with port forwarding:
Connect your headset to your computer via USB cable
Enable developer mode on your headset (check your device’s documentation for instructions)
Set up port forwarding:
Open Chrome on your computer and navigate to chrome://inspect/#devices
Your headset should appear under “Remote Target”
Click “Port forwarding...” in Chrome DevTools
Add a rule to forward the port shown in the Local URL from your computer to your headset
Access the local server on your headset by entering the forwarded URL, for example https://localhost:5173
Accept the certificate warning and click “Enter XR” when the page loads
Option 2: Testing with IWER (Browser Emulation)
IWER (Immersive Web Emulator Runtime) is a WebXR emulator that runs entirely in your browser, allowing you to develop and test WebXR applications without a headset. The IWSDK development plugin enables IWER according to your project’s emulator configuration; it does not probe for connected WebXR hardware. IWER provides mouse and keyboard controls to simulate VR interactions.
The IWSDK development plugin injects IWER when the configured activation rules match. Generated projects keep project-owned emulator settings in iwsdk.config.json:
Keep the Vite configuration focused on enabling the development plugin:
import { iwsdkDev } from '@iwsdk/vite-plugin-dev';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [iwsdkDev()],
});
Do not also pass emulator to iwsdkDev(). When a project manifest is present, the plugin rejects competing project-owned configuration.
To test with IWER, open the local URL reported by the development command and select Enter XR. The development plugin injects the emulator when the configured activation rules match.
IWER Controls
After entering XR, use the IWER toolbar and controller panels overlaid on the
page:
Click the Play mode button (the circle-play icon) to lock the pointer.
Move the mouse to look around. Press Escape to leave play mode.
Hold Left Shift while using W, A,
S, and D to move the emulated headset through the
scene. Use Left Shift +
ArrowUp/ArrowDown to adjust height.
These keys continue to drive their controller thumbsticks while Left Shift
is held, so the default XR starter moves both the emulated headset and the
player. If you need isolated headset free-flight, use the controller gear
buttons to remap the thumbstick keys first.
Without Left Shift,
W/A/S/D drive the left
thumbstick. The arrow keys drive the right thumbstick.
In play mode, left mouse is the right-controller trigger/select and
right mouse is the right-controller grip/squeeze. The starter plant’s
DistanceGrabbable uses trigger/select; near-field OneHandGrabbable and
TwoHandsGrabbable interactions use grip/squeeze.
Outside play mode, click a controller’s Trig or Grip value for a
momentary press. Use the adjacent pin button to latch that value until you
release it. Open the gear button to inspect or remap keyboard bindings.
To move the starter plant, leave play mode, latch Trig, and drag the
controller’s transform handle in the scene. Use Grip instead when testing
a near-field grabbable. Click the handle to switch between translation and
rotation, then release the latch to drop the object.
Use Toggle input mode in the toolbar to switch between controllers and
hands. Use Reset device transforms to return the headset and inputs to
their default pose.
The default left-controller trigger and squeeze bindings are Q and
E. The visible binding chips in each controller panel are the source
of truth if you have remapped a control.