# Getting Started This section will help you set up your Dioxus project! ## Prerequisites ### An Editor Dioxus integrates very well with the [Rust-Analyzer LSP plugin](https://rust-analyzer.github.io) which will provide appropriate syntax highlighting, code navigation, folding, and more. ### Rust Head over to [https://rust-lang.org](http://rust-lang.org) and install the Rust compiler. We strongly recommend going through the [official Rust book](https://doc.rust-lang.org/book/ch01-00-getting-started.html) _completely_. However, we hope that a Dioxus app can serve as a great first Rust project. With Dioxus, you'll learn about: - Error handling - Structs, Functions, Enums - Closures - Macros We've put a lot of care into making Dioxus syntax familiar and easy to understand, so you won't need deep knowledge of async, lifetimes, or smart pointers until you start building complex Dioxus apps. ## Setup Guides Dioxus supports multiple platforms. Choose the platform you want to target below to get platform-specific setup instructions: - [Web](web.md): runs in the browser through WebAssembly - [Server Side Rendering](ssr.md): renders to HTML text on the server - [Liveview](liveview.md): runs on the server, renders in the browser using WebSockets - [Desktop](desktop.md): runs in a web view on desktop - [Mobile](mobile.md): runs in a web view on mobile - [Terminal UI](tui.md): renders text-based graphics in the terminal