16 unstable releases (3 breaking)

0.5.4 Mar 28, 2024
0.5.0-alpha.0 Feb 23, 2024
0.4.3 Dec 7, 2023
0.4.1 Sep 4, 2023
0.1.0 Jan 20, 2021

#681 in Command line utilities

Download history 405/week @ 2024-01-01 457/week @ 2024-01-08 501/week @ 2024-01-15 618/week @ 2024-01-22 465/week @ 2024-01-29 323/week @ 2024-02-05 369/week @ 2024-02-12 803/week @ 2024-02-19 1139/week @ 2024-02-26 919/week @ 2024-03-04 484/week @ 2024-03-11 617/week @ 2024-03-18 1624/week @ 2024-03-25 1143/week @ 2024-04-01 863/week @ 2024-04-08 712/week @ 2024-04-15

4,414 downloads per month

MIT/Apache and GPL-3.0-or-later

1MB
21K SLoC

📦✨ Dioxus CLI

Tooling to supercharge Dioxus projects

The dioxus-cli (inspired by wasm-pack and webpack) is a tool for getting Dioxus projects up and running. It handles building, bundling, development and publishing to simplify development.

Installation

cargo install dioxus-cli

Install the latest development build through git

To get the latest bug fixes and features, you can install the development version from git. However, this is not fully tested. That means you're probably going to have more bugs despite having the latest bug fixes.

cargo install --git https://github.com/DioxusLabs/dioxus dioxus-cli

This will download the CLI from the master branch, and install it in Cargo's global binary directory (~/.cargo/bin/ by default).

Install from local folder

Note: The CLI will fail to build projects in debug profile. This is currently under investigation.

cargo install --path . --release

Get started

Use dx create to initialize a new Dioxus project. It will be cloned from the dioxus-template repository.

Alternatively, you can specify the template path:

dx create --template gh:dioxuslabs/dioxus-template

Run dx --help for a list of all the available commands. Furthermore, you can run dx <command> --help to get help with a specific command.

Dioxus config file

You can use the Dioxus.toml file for further configuration. Some fields are mandatory, but the CLI tool will tell you which ones are missing. You can create a Dioxus.toml with all fields already set using dx config init project-name, or you can use this bare-bones template (only mandatory fields) to get started:

[application]
name = "project-name"
# Currently supported platforms: web, desktop
default_platform = "web"

[web.app]
title = "Hello"

[web.watcher]

[web.resource.dev]

The full anatomy of Dioxus.toml is shown on the Dioxus website.

Dependencies

~128MB
~2.5M SLoC