Tauri Plugin FS

Cross-platform file system access for Tauri apps through a typed JavaScript API backed by Rust.

Library
npm
v2.5.1
1,793stars
MIT OR Apache-2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
91/100Excellent
Development Activity96
Maintenance100
Community72
Maturity56
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
87/100Excellent
Architecture90
Code Quality78
Innovation90
Learning Curve72

@tauri-apps/plugin-fs is the official Tauri plugin that gives your web-based frontend safe, cross-platform access to the native file system. It pairs a Rust core with typed JavaScript guest bindings so you can read, write, watch, and manage files and directories from your app’s UI code without shelling out or bundling a native module yourself.

Every operation runs through Tauri’s capability and scope system, so file access is explicitly permissioned rather than wide open. The same API works across Windows, macOS, Linux, Android, and iOS, giving you a single, familiar surface for file handling in desktop and mobile Tauri applications.

What You Get

  • A typed JavaScript/TypeScript API covering reads, writes, directory operations, metadata, and file watching
  • A Rust core (tauri-plugin-fs) that enforces Tauri’s capability and scope-based permission model on every operation
  • Cross-platform support spanning Windows, macOS, Linux, Android, and iOS from one API
  • A FileHandle abstraction plus helpers like readTextFileLines for streaming and line-by-line access
  • Base-directory resolution and URL/path handling so paths stay portable across platforms

Common Use Cases

  • Reading and writing user documents or app data from a Tauri desktop or mobile UI
  • Persisting configuration, cache, or export files to platform-appropriate directories
  • Watching files or folders and reacting to changes in real time within the app
  • Building file-manager-style features (copy, move, delete, list) on top of native storage

Under The Hood

Architecture The plugin is split across two layers: TypeScript guest bindings in guest-js/index.ts (~1,500 lines) that your frontend imports, and a Rust core in src/ whose commands.rs (~1,900 lines) implements the actual file operations. Frontend calls are marshalled over Tauri’s IPC bridge to the Rust side, where lib.rs registers commands and file_path.rs plus scope.rs resolve and validate paths against the app’s configured capabilities before any disk access occurs. Platform-specific code lives in android.rs, ios.rs, and desktop.rs, with an optional notify-based watcher (watcher.rs) for change events.

Tech Stack The Rust core depends on tauri, serde/serde_json/serde_repr for IPC serialization, thiserror and anyhow for errors, glob for pattern matching, and the notify plus notify-debouncer-full crates (behind a watch feature) for filesystem watching; iOS builds pull in objc2-foundation. The JavaScript package is authored in TypeScript, bundled with Rollup into ESM, CJS, and type-declaration outputs, and depends only on @tauri-apps/api at runtime.

Code Quality The code is cleanly separated by concern and fully typed on both the Rust and TypeScript sides, with an explicit permissions/ directory codifying the security scopes. Error handling is centralized in error.rs. Test coverage on the JavaScript binding layer is thin (no dedicated JS unit test suite ships in the package; the visible tests live under the Android source tree), so correctness leans on the maturity of the Rust core and Tauri’s overall test infrastructure.

API Design The public JavaScript surface deliberately mirrors Node’s fs module, exposing readFile, writeFile, readTextFile, writeTextFile, mkdir, readDir, stat, lstat, rename, copyFile, remove, truncate, exists, size, and a watch/watchImmediate pair, alongside an open()/create() FileHandle abstraction and a readTextFileLines streaming helper. The familiar naming, consistent async signatures, and clear README setup instructions keep the boilerplate minimal once the plugin is registered in the Rust builder and the relevant capabilities are granted.

Used by 17 apps in this directory

TypeScript
92%
GPL 3.0

Blinko

Knowledge Management · Note Taking

10,880

A self-hosted, AI-powered card note-taking tool that lets you capture fleeting thoughts instantly and retrieve them with natural language search.

View details
83
Repo Health
69
Technical
65
Dependency
Built with
TypeScript92%
Updated 2 weeks ago
TypeScript
55%
Other

Cap

Team Chat · Video Conferencing

20,986

Open source Loom alternative with GPU-accelerated recording, instant share links, AI summaries, and full self-hosting via Docker Compose.

View details
89
Repo Health
81
Technical
65
Dependency
Built with
TypeScript55%
Rust40%
Updated yesterday
TypeScript
88%
MIT

DevTools-X

Developer Tools

1,532

41 offline-first developer utilities in a single 10MB cross-platform desktop app — no Electron, no cloud, no compromise.

View details
51
Repo Health
68
Technical
68
Dependency
Built with
TypeScript88%
Updated 2 months ago
TypeScript
72%
Other

Epicenter

Knowledge Management · Note Taking · Developer Tools

4,761

A local-first monorepo led by Whispering, an open-source speech-to-text app, built on an MIT toolkit that turns your data into plain Markdown and SQLite files you own instead of a database you rent.

View details
88
Repo Health
90
Technical
68
Dependency
Built with
TypeScript72%
Svelte15%
Updated today
Rust
69%
Other

GitButler

Developer Tools · Devops · AI Development

21,531

Git, but better — a modern version control client with stacked branches, parallel workflows, unlimited undo, and first-class support for AI-powered development.

View details
89
Repo Health
84
Technical
68
Dependency
Built with
Rust69%
TypeScript18%
Svelte12%
Updated today
Rust
57%
MIT

Handy

Productivity

29,916

Free, offline, open-source speech-to-text that pastes directly into any app on Windows, macOS, and Linux.

View details
87
Repo Health
78
Technical
73
Dependency
Built with
Rust57%
TypeScript31%
Updated today
TypeScript
67%
MIT

Hoppscotch

Developer Tools

80,055

A lightweight, offline-capable API development ecosystem for testing HTTP, GraphQL, WebSocket, MQTT, and SSE endpoints across web, desktop, and CLI.

View details
91
Repo Health
83
Technical
66
Dependency
Built with
TypeScript67%
Vue23%
Updated 3 days ago
JavaScript
57%
Other

Lokus

Note Taking · Knowledge Management

774

Local-first note-taking with graph view, canvas & AI plugins—your Markdown files, zero telemetry, blazing-fast Rust performance.

View details
78
Repo Health
75
Technical
65
Dependency
Built with
JavaScript57%
HTML24%
Updated 1 weeks ago
Rust
46%
MIT

Meetily

Productivity · AI Assistants

29,484

Privacy-first AI meeting assistant that transcribes and summarizes your meetings entirely on your local machine — no cloud, no data leakage.

View details
70
Repo Health
72
Technical
71
Dependency
Built with
Rust46%
TypeScript30%
Updated 2 months ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search