π A boilerplate for native applications with Tauri and Xcode using TypeScript on Vite.
π View Demo: Live | Windows | macOS | Android | iOS
Source Code: Web-side | Native-side | Server-side | Cloud-side
Prerequisites:
- Node.js v20
- PNPM v9
- Tauri v2
Get started with Tauri Starter.
# install dependencies
$ pnpm install
# dev server (in one terminal)
# the default is to run it on macOS
$ pnpm dev:mobile
# or
$ pnpm dev:desktop
# mock server (in another terminal)
$ pnpm mock
Or use barebones scaffolding for your new Tauri app
$ pnpm dlx degit Shyam-Chen/Barebones-Templates/tauri my-tauri-app
Follow steps to execute this boilerplate.
$ pnpm install
$ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
$ xcrun -f devicectl
$ pnpm tauri ios init
# Xcode -> Open Developer Tool -> Simulator -> File -> Open Simulator -> iPhone Pro
$ pnpm tauri ios dev
# Detected iOS simulators:
# [1] iPhone
# [2] iPhone Plus
# [3] iPhone Pro
# [4] iPhone Pro Max
# Enter an index for a simulator above.
# Simulator: 3
$ pnpm clean:ios
$ pnpm tauri ios init
$ pnpm tauri ios build
$ pnpm tauri dev
$ pnpm tauri build
$ cd Library/Android/sdk/ndk/
$ ls
# 26.2.11394342
export NDK_HOME="$ANDROID_HOME/ndk/26.2.11394342"
$ pnpm tauri android init
$ pnpm tauri android dev
# select emulator
$ pnpm clean:android
$ pnpm tauri android init
$ pnpm tauri android build
$ pnpm mock
This seed repository provides the following features:
- ---------- Essentials ----------
- Tauri - Native Apps Framework
- Vue - User Interface Framework
- Router - Routing
- Routes - File-based Routing
- Storer - State Management
- Formor - Form Validation
- Valibot - Schema Validation
- Localer - Internationalization and Localization
- Use - Composition Utilities
- Qrcode Image - QR Code Generation
- Lodash - JavaScript Utilities
- Date Fns - Date Utilities
- UnoCSS - CSS Utilities
- Iconify - Icon Utilities
- Tiptap - Rich Text Editor
- ECharts - Data Visualization
- ---------- Tools ----------
- Vite - Bundler
- TypeScript - JavaScript with Syntax for Types
- Sassy CSS - CSS Extension
- Biome - Formatter and Linter
- ESLint - Linter
- Prettier - Formatter
- Vitest - Test Runner
- WebdriverIO - Test Automation
- Appium - WebDriver Protocol Mobile Test Automation
- ---------- Environments ----------
- Node.js - JavaScript Runtime Environment
- Pnpm - Package Manager
- GitHub Actions - Continuous Integration and Delivery
- Tauri GitHub Action - Native Binary
TODO
The structure follows the LIFT Guidelines.
.
βββ .github/workflows
β βββ ci.yaml
β βββ publish.yaml
βββ app
β βββ public
β βββ src
β β βββ assets
β β βββ components
β β βββ composables
β β βββ layouts
β β βββ locales
β β βββ middleware
β β βββ plugins
β β βββ routes
β β βββ utilities
β β βββ workers
β β βββ App.vue
β β βββ main.ts
β β βββ shims.d.ts
β βββ index.html
β βββ package.json
β βββ tsconfig.json
β βββ vite.config.ts
βββ docs -> Write documentation with VitePress
β βββ .vitepress
β βββ index.md
β βββ package.json
β βββ vite.config.ts
βββ e2e -> End-to-end testing
β βββ src
β βββ package.json
β βββ playwright.config.ts
β βββ tsconfig.json
βββ mock -> Mock backend API
β βββ src
β βββ package.json
β βββ tsconfig.json
β βββ vite.config.ts
βββ ui -> Design system
β βββ src
β βββ package.json
β βββ tsconfig.json
β βββ vite.config.ts
βββ .editorconfig
βββ .gitignore
βββ eslint.config.js
βββ package.json
βββ pnpm-lock.yaml
βββ pnpm-workspace.yaml
βββ prettier.config.js
βββ README.md