brys0 / vite-tauri-template

Tauri + Vite + Vue 3 + Vuetify 3 desktop app template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vite Tauri Template

This is a starter template for those who want to make a desktop application with web technologies. This template uses the below stack.

Vite.js

Vite.js is a new modern bundler for javascript which is blazing fast and includes many sensible defaults.

Tauri

Tauri is a new modern technology to turn your web apps into a desktop app for multiple platforms (Windows, MacOS, Linux, android and ios soon). Tauri apps have very small file size and tiny memory consumption.

Vue 3

Vue.js is an incremental frontend framework which is an absolute joy to work with. It has seen very impressive improvements in version 3 including Composition Api, script setup, dynamic css binding and ... .

Vuetify 3

Vuetify is arguably the best component library for Vue 3 and is currently in alpha stage but will soon be ready for production. Lots of premade components will make your job as application developer easier and more fun.

Bonus: Vue Global Api

Vue Global Api globally registers commonly used composition api functions such as ref, reactive and ... . makes your script setup sections cleaner.

Installation

  • Ready your workspace according to tauri. Tauri Getting Started

    • Note: You only need to install global things such as rust and other os level packages. Any thing related to application itself is already installed and ready for you.
  • Clone repository git clone https://github.com/yooneskh/vite-tauri-template app-name

  • yarn or npm i

  • Modify these files according to your app.

    • index.html
    • package.json
    • public/favicon.ico
    • src/assets/logo.*
    • src-tauri/tauri.conf.json

Usage

  • yarn serve launches vite and you can test and develop your app in the browser at http://localhost:8080.

  • yarn serve:native launches vite and configures ynetwork to use tauri for api calls. Use this if you want to test your app in tauri dev mode.

  • yarn serve:tauri launches tauri in dev mode and you can see your app in tauri window.

  • yarn build builds web application and packages them with tauri in src-tauri/target

  • yarn build:web only builds the web application and puts it in ./dist directory. You should not normally want this. Difference of this web app with the one build with normal yarn build is that this one uses axios for network calls.

License

Do whatever you want with it!

About

Tauri + Vite + Vue 3 + Vuetify 3 desktop app template


Languages

Language:Vue 52.7%Language:JavaScript 37.0%Language:HTML 6.0%Language:Rust 4.4%