Bevy Game Developer Guide

ECOSYSTEM research · Game Development

🚀 The Fast Track Web Development Workflow

During desktop development, you normally run cargo run. For the web, you can use specialized tools that hot reload and run a local web server automatically. Trunk is the community favorite for this.

1. Initial Project Setup

First, make sure your Rust toolchain is equipped to handle the web target:

bash

Add the WebAssembly compilation target

rustup target add wasm32 unknown unknown

Install Trunk (the web bundler for Rust)

Back to ECOSYSTEM research