Нема описа

YuKun Liu c44777003b fix: some warning пре 2 година
.fleet bbc9e1b3a2 feat: default plugin info пре 2 година
.github 99a7f68a28 update build.yml: add new target пре 2 година
.vscode 3630224659 feat: commit codee пре 2 година
docs ad1ed6cfb5 Merge branch 'master' into master пре 2 година
examples ded8f86279 feat: commit code пре 3 година
extension b23e69cfbb Refactor extension, make it easy to maintain and unique to register пре 3 година
src c44777003b fix: some warning пре 2 година
tests ce628e1197 Fix compiler errors пре 3 година
.gitignore c7d962f250 fix: ignore `.DS_Store` пре 3 година
Cargo.lock 6092bfed0a Merge branch 'master' of https://github.com/mrxiaozhuox/dioxus-cli пре 2 година
Cargo.toml 2e804f71b3 Merge pull request #57 from mrxiaozhuox/master пре 2 година
Dioxus.toml 3514e34112 feat: commit code пре 3 година
README.md 555680df99 update: improve readability пре 2 година
rustfmt.toml d1c619e5dc update edition пре 3 година

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

Installation

Stable

cargo install dioxus-cli

Latest

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

Developing

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

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