1. Home
  2. /
  3. Tauri
  4. /
  5. System Info App

System Info App - Tauri Typing CST Test

Loading…

System Info App — Tauri Code

Displays system information like OS, architecture, and version using the Tauri OS API.

// main.js
import { platform, version, arch } from '@tauri-apps/api/os';

document.addEventListener('DOMContentLoaded', async () => {
	document.getElementById('os').textContent = await platform();
	document.getElementById('arch').textContent = await arch();
	document.getElementById('ver').textContent = await version();
});

// index.html
<!DOCTYPE html>
<html>
	<body>
		<h2>System Info</h2>
		<p>OS: <span id='os'></span></p>
		<p>Arch: <span id='arch'></span></p>
		<p>Version: <span id='ver'></span></p>
		<script type='module' src='main.js'></script>
	</body>
</html>

Tauri Language Guide

Tauri is an open-source framework for building tiny, secure, and fast desktop applications using web technologies (HTML, CSS, JS) while leveraging Rust for backend functionality. It works with frontend frameworks like React, Vue, Angular, and Svelte.

Primary Use Cases

  • ▸Cross-platform desktop apps for Windows, macOS, and Linux
  • ▸Electron alternative for smaller binaries and better security
  • ▸Internal tools and utilities for businesses
  • ▸Apps requiring frontend-backend separation
  • ▸Desktop apps integrating web-based UI frameworks

Notable Features

  • ▸Tiny binary sizes compared to Electron
  • ▸Built-in security and sandboxing
  • ▸Cross-platform support: Windows, macOS, Linux
  • ▸Integration with any frontend framework
  • ▸Rust backend for system-level access

Origin & Creator

Created by the Tauri Programme within the open-source community starting in 2019, Tauri was designed to offer lightweight, secure alternatives to Electron apps.

Industrial Note

Best suited for desktop apps that require small binary sizes, high performance, and strong security guarantees while reusing web development skills.

More Tauri Typing Exercises

Tauri Simple Todo AppTauri File Reader AppTauri Clipboard ManagerTauri Notification ExampleTauri File Saver AppTauri Window ControllerTauri Shell Command RunnerTauri Dialog ExampleTauri Theme Toggle App

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher