Crates.io | webui |
lib.rs | webui |
version | 0.10.5 |
source | src |
created_at | 2022-09-30 16:29:58.181509 |
updated_at | 2024-06-15 13:23:56.665958 |
description | `early development` Website UI framework and component library for quickly building websites with native support for Material UI standardization. |
homepage | https://webui.stoicdreams.com |
repository | https://github.com/StoicDreams/WebUI |
max_upload_size | |
id | 677406 |
size | 83,717 |
View Demo and Doc Site - webui.stoicdreams.com
View Rust WebUI Docs - docs.rs/webui
View on crates.io - crates.io/crates/webui
View on GitHub - github.com/StoicDreams/WebUI
webui
is a website framework for building webassembly SPA websites quickly and easily.
Development is just getting started, so we do not recommend using at this point for anything more than experimenting.
These instructions assume you have at least some familiarity with the Rust language and ecosystem.
If you are new to rust, then get started by reading The Rust Book to learn about the language.
This project was setup on a Mac, so for now instructions have not been verified on Windows or Linux machines, though it is expected to have little to no differences in this scope.
Follow instructions here to install Rust for your system.
Make sure rust is up to date
rustup update
Install Trunk executable - this will be used to run your website locally for testing in your browser.
cargo install trunk wasm-bindgen-cli
Add waxm build target
rustup target add wasm32-unknown-unknown
Before you get started, it's important to understand the optional features that WebUI
offers.
These features can be enable using feature flags. Some features are only applicable to the WebUI
executable that is used to setup your core WebUI
framework files, while others are only applicable to the WebUI
library, and finally some are shared by both.
Flag | Lib | Exe | Detail |
---|---|---|---|
tauri | X | Include this flag to enable features for integrations into a Tauri application. |
Start by creating your project using cargo.
cargo new name_of_your_app
cd name_of_your_app
Verify your Rust environment is setup correctly.
cargo run
Update your Cargo.toml
file to include webui
dependency.
[package]
name = "name_of_your_app"
version = "0.1.0"
edition = "2021"
[dependencies]
webui = "0.10.5"
# Customize with specific feature flags (pages is included by default)
# webui = { version = "0.10.5", features = ["tauri"] }
# webui = { version = "0.10.5", default-features = false }
# Use the direct GitHub reference if you want bleeding edge updates
# webui = { git = "https://github.com/StoicDreams/WebUI", branch = "main" }
Install webui executable - this will be used to build your boilerplate static files.
Note: We recommend that you generally set the same feature flags for your
webui
executable that you set for your use of thewebui
library to assure accompanying starter files are included. That said, not all features are shared across the Lib version and Exe versions ofWebUI
. See the Features section above for more information on specific features to use between theWebUI
executable and library.
# default installation, includes starter pages md files.
cargo install webui
Run webui
in your projects root folder (not src
) to add static files (index.html, css, etc.)
webui
Note that you should run webui
command anytime you update to a new version, making sure to update both the webui executable and the webui dependency in your project.
Certain files are considered static and are not meant to be manually updated. These files will be overwritten during updates.
Other files are considered starter files that you will probably want or need to update and will not overwrite an existing file during updates. If you want to update to the latest starter file, then you will need to delete or rename your existing file - recommend renaming file, such as postfixing .bck to the file name, so you can copy over your customizations to the new Web UI file once it's created.
File | Starter | Static | Details |
---|
index.html | X | | Update metadata information and add any links for extended js/css functionality. app.webmanifest | X | | Update with information about your app. This is used for installable SPAs. robots.txt | X | | Update as needed to manage search bot rules. Logo.svg | X | | Placeholder logo. Update with your own. service-worker.js | X | | Basic service worker for file caching, also required for installable SPA apps. service-worker.min.js | X | | Minified version of basic service worker for file caching, also required for installable SPA apps.
Run trunk serve --open
from your project root to run your site locally. The --open
flag will open your website in your default browser. If you already have the page open you can exclude the --open
flag.
trunk serve --open
Erik Gassler - Stoic Dreams - Forging solutions for tomorrow's software development.
Support - Visit Stoic Dreams' GitHub Sponsor page if you would like to provide support to Stoic Dreams.