From b335aeee74c6d30db920fc746c4e6a70412b4354 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Sun, 4 Jan 2026 02:50:28 -0500 Subject: [PATCH 1/2] update dioxus-cli install instructions --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1ce3f4f..b509835 100644 --- a/README.md +++ b/README.md @@ -38,17 +38,25 @@ Collection of useful developer utilities built as a pure Rust app on the [Dioxus 2. Install the Dioxus CLI: + See the [Dioxus Getting Started guide](https://dioxuslabs.com/learn/0.7/getting_started/#install-the-cli) for the latest instructions. Generally, this can be done via `cargo-binstall`: + + ```bash + cargo binstall dioxus-cli --force + ``` + + If you don't have `cargo-binstall`, you can install it via: + ```bash - cargo install dioxus-cli + cargo install cargo-binstall ``` 3. Clone this repository and enter its root directory. 4. Install npm dependencies: - ```bash - npm install - ``` +```bash +npm install +``` ## Web App From ec90868c62cf2f0c845267b3821a4b3bfef95d5a Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Sun, 4 Jan 2026 02:52:39 -0500 Subject: [PATCH 2/2] update more install headings --- README.md | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index b509835..b053422 100644 --- a/README.md +++ b/README.md @@ -31,28 +31,34 @@ Collection of useful developer utilities built as a pure Rust app on the [Dioxus ## Development Setup -1. Install prerequisites: - - [Rust](https://www.rust-lang.org/tools/install) - - [Node.js](https://nodejs.org/) (for Tailwind CSS compilation) - - [Platform-specific dependencies](https://dioxuslabs.com/learn/0.7/getting_started/#platform-specific-dependencies) for Dioxus +### 1. Install prerequisites -2. Install the Dioxus CLI: +- [Rust](https://www.rust-lang.org/tools/install) +- [Node.js](https://nodejs.org/) (for Tailwind CSS compilation) +- [Platform-specific dependencies](https://dioxuslabs.com/learn/0.7/getting_started/#platform-specific-dependencies) for Dioxus - See the [Dioxus Getting Started guide](https://dioxuslabs.com/learn/0.7/getting_started/#install-the-cli) for the latest instructions. Generally, this can be done via `cargo-binstall`: +### 2. Install the Dioxus CLI - ```bash - cargo binstall dioxus-cli --force - ``` +The easiest way to install the Dioxus CLI is via `cargo-binstall`: - If you don't have `cargo-binstall`, you can install it via: +```bash +cargo binstall dioxus-cli --force +``` + +If you don't have `cargo-binstall`, you can install it via: + +```bash +cargo install cargo-binstall +``` - ```bash - cargo install cargo-binstall - ``` +### 3. Clone the repository -3. Clone this repository and enter its root directory. +```bash +git clone https://github.com/esimkowitz/dev-widgets.git +cd dev-widgets +``` -4. Install npm dependencies: +### 4. Install npm dependencies ```bash npm install