Žiadny popis

YuKun Liu ffb43e19f0 Merge pull request #136 from arqalite/add-open-option-to-serve 2 rokov pred
.fleet bbc9e1b3a2 feat: default plugin info 2 rokov pred
.github c36ab028b9 fix: docs workflow 2 rokov pred
.vscode 3630224659 feat: commit codee 2 rokov pred
docs d8f76a9ebb Update serve.md 2 rokov pred
examples ded8f86279 feat: commit code 2 rokov pred
extension d1d0ffd912 fix off-by-one error for utf8 to utf16 pos conversion 2 rokov pred
src f6cd48c612 feat: open browser during serve with "--open" 2 rokov pred
tests 3269b2b5aa feat: add more options to translation 3 rokov pred
.gitignore fa52a8f71a Merge branch 'master' into jk/formatting-and-extension 2 rokov pred
Cargo.lock f6cd48c612 feat: open browser during serve with "--open" 2 rokov pred
Cargo.toml f6cd48c612 feat: open browser during serve with "--open" 2 rokov pred
Dioxus.toml 3514e34112 feat: commit code 3 rokov pred
README.md eb91d779cf started tests; some minor build optimization 2 rokov pred
build.rs baab2b9b4f feat: use local bundle strategy 3 rokov pred
rustfmt.toml d1c619e5dc update edition 3 rokov pred

README.md

📦✨ Dioxus CLI

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 build, bundling, development and publishing to simplify web development.

Installation

Install stable version

cargo install dioxus-cli

Install from git repository

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

Install from local folder

cargo install --path . --debug

Get Started

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

Dioxus Config File

Dioxus CLI will use Dioxus.toml file to Identify some project info and switch some cli feature.

You can get more configure information from Dioxus CLI Document.