Skip to Content
DocsDevelopmentSetup

Setup

Environment requirements

  • rustup

    • curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  • Node.js

    • Minimum version: 20.0.0
    • We recommend using fnm to manage Node.js versions.
  • pnpm

    • Minimum version: 9.0.0
    • Just install it with npm install -g pnpm

Setup project

git clone https://github.com/AprilNEA/DevUtility.git cd DevUtility pnpm install

Run desktop app

pnpm dev # Same as: # pnpm tauri dev

Run web app

Compile the wasm code

make core

Then start the web app

pnpm web # Same as: # pnpm --filter @dev-utility/frontend dev:wasm
Last updated on