|
há 2 anos atrás | |
---|---|---|
.github | há 2 anos atrás | |
.vscode | há 2 anos atrás | |
docs | há 2 anos atrás | |
examples | há 2 anos atrás | |
extension | há 3 anos atrás | |
src | há 2 anos atrás | |
tests | há 3 anos atrás | |
.gitignore | há 3 anos atrás | |
Cargo.lock | há 2 anos atrás | |
Cargo.toml | há 2 anos atrás | |
Dioxus.toml | há 3 anos atrás | |
README.md | há 2 anos atrás | |
rustfmt.toml | há 3 anos atrás |
Tooling to supercharge Dioxus projects
dioxus-cli
(inspired by wasm-pack and webpack) is a tool for getting Dioxus projects up and running. It handles all of the build, bundling, development and publishing to simplify web development.
cargo install dioxus-cli
cargo install --git https://github.com/DioxusLabs/cli
cargo install --path . --debug
Now that dioxus
is in the path, use dioxus --help
to see the help information.
dioxus 0.1.2
Build, Bundle & Ship Dioxus Apps
USAGE:
dioxus [FLAGS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-v Enable verbose logging
-V, --version Prints version information
SUBCOMMANDS:
build Build the Rust WASM app and all of its assets
clean Clean output artifacts
config Dioxus config file controls
create Init a new project for Dioxus
help Prints this message or the help of the given subcommand(s)
serve Build, watch & serve the Rust WASM app and all of its assets
translate Translate some source file into Dioxus code
Use dioxus create project_name
to initialize a new Dioxus project.
It will be cloned from the dioxus-template repository.
Alternatively, you can specify the template path:
dioxus create hello --template gh:dioxuslabs/dioxus-template