Rust Tauri 1.0 - Quick Intro - Rust Desktop App

preview_player
Показать описание
Rust Programming for Desktop Application with Tauri 1.0. This is a quick introduction of the Tauri basics.

We will learn how to:

- Setup a Rust Tauri project with TypeScript and Rollup for Web Components, and nodeJS.
- Create a Rust Tauri Command and call it from JavaScript / TypeScript.
- Create Tauri State to be called from JavaScript.
- Use Tauri Event Model

Chapters:

00:00 Overview
01:03 Setup
03:57 Hot Reload with Servor
06:23 Setup TypeScript
10:12 Tauri Command
12:29 Tauri State
15:40 Tauri Event Model

Jeremy Chone:

Other popular Rust Programming videos:

Playlists:

Рекомендации по теме
Комментарии
Автор

I think this is my motivation to finally learn Rust...

jakemeyer
Автор

Wow! Loved the fast pace style, very focused on getting things done. Aamazing video! I’m looking forward to the rest of the series!

nikensss
Автор

Your channel is by far the most comprehensive resource for Rust programming that I have found. Great videos.

oligy
Автор

I tried it today ! Thank you for your help: a litel list to add if your new and just start and not make the same mistakes to figure it out 1. install rust 2. dont use captial letters in creating a project test-app is fine DONT USE Test-APP will not work ! I HOPE I WILL SAVE YOU SOME TIME !

redbeardjunior
Автор

The detail and explanation is impeccable!

christerpherhunter
Автор

Really great Video, thank you! I really like the pace and the visualizations. Not to fast and not taking to much time to keep it interesting. Also the clean and clutter free presentation helps! I hope i can spend some time on the weekend with it and try to use sycamore (maybe also Dioxus/Yew if time allows) [with trunk?] as a replacement for the Javascript/Typescript part :)

hagbardceline
Автор

I'm trying to make a rust desktop app that connects to a database and this series is perfect! Thank you!

ProtonChicken
Автор

Thank you very much man, seriously you helped a lot i started from 0 to 10.

natymetrio
Автор

Wow. Amazing tutorial!
Nicely presented.

azzamsya
Автор

Wow, amazing tutorial - now I have a great reference for some fun projects. Thank you!!!

hotharvey
Автор

loved this technology, gonna master it, thanks for the exposure!

mumk
Автор

I love your videos! Such high quality Rust content. Keep them coming!

jamese.spivak
Автор

Your providing all this knowledge for free
Thank you respect++

prashlovessamosa
Автор

Awesome vid! Really looking forward to seeing some cool projects made with Tauri.

lankymoose
Автор

Excellent tutorial, thank you. A lot of dark magic happens with all the traits and dependencies you have to "not forget". I will save this video to my bookmarks but I am still looking for a more transparent solution. Any suggestion on what tools to use for a simple kiosk/HMI application on Raspberry PI?

antonioastorino
Автор

Thank you! This was a very usefull video.
I am already excited for the next one!




Btw. I try to also follow with a minimal setup.
Basically i managed to make it run with only tauri and tauri-build as dependency.
Also my tauri.conf.json looks like this:

{
build: {
devPath:"./dist",
distDir:"./dist"
},
tauri: {
allowlist: { all: true },
windows:[{}]
}
}

DDlol
Автор

Really like your teaching style. Would love to see a tauri + yew video

supertrooperdk
Автор

Wow! This was super helpful, thanks a lot!!

flyingsquirrel
Автор

Interesting video. Is there a way to export the rust function definitions as Typescript interfaces as well? Would be much better than invoking them by string, because there is so much place for typo and type errors on the js side.

Serveny
Автор

Please, make a tut on how to set up an http server with tauri

mrchakeratallah