rust-rocket-svelte

Rust Rocket Svelte

Example of using Rust/Rocket/OpenAPI/Protobuf/Svelte

Rust-Svelte-on-Rust

Starter template for Svelte frontend apps with Rust Rocket backend server.

Requirements

We will use Rust nightly.

Background

Create a new project based on this example: Mozilla Developer Network, Getting Started with Svelte

Starting from scratch

Optional: Assuming you are not using this repository, to start with a clean slate for Rust/Svelte

npx degit sveltejs/template moz-todo-svelte
cd moz-todo-svelte
cargo new myproject
#now move stuff around

Installation

Install github CLI tool

Using these instructions

curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo apt update
sudo apt install gh
echo "Install rust and cargo (Rust's package manager)"
curl https://sh.rustup.rs -sSf | sh
echo "clone, or better yet your github cli tool"
git clone https://github.com/joemooney/rust-rocket-svelte
or
gh repo clone joemooney/rust-rocket-svelte
rustup override set nightly
npm install

These are the steps to get to the initial point for starting development. Then we move the svelte related files into the client directory etc.

Getting Started

Start Rocket server and Rollup in two different terminals

Terminal #1

To build and hot reload svelte components, this will not launch a http server.

npm run dev  

Terminal #2

Compile and run the rust rocket http server:

cargo run  
  • Navigate to localhost:8000. You should see your app running.
  • Svelte client code is in client directory.

** Upon saving changes live-reloading via rollup will be rendered in the browser.

  • Rust server Rocket code is in src directory.

** To rebuild Rust code use cargo run after saving your changes.

  • All static files are served from public direcotry. Including the JS code compiled by Svelte Compiler.

Building and running in production mode

To create an optimised version of the app:

npm run build
cargo build

Built With

Rocket

Svelte

Svelte Material UI

Svelte Material Icons

Change Log

Step 1

Initial barebones Rust/Rocket/Svelte page working.

Step 2

Got communication working from Svelete client calling Rust asynchronously.

Step 3

Added Material UI components to create a first draft user interface.

TODO: I did not keep track of all that I did, need to repeat the process.

npm i svelte-material-ui
npm i -D @smui/data-table
npm i -D @smui/tab
npm i -D @smui/tab-bar
npm i svelte-material-icons

Top categories

Loading Svelte Themes