Tech stack
Fylepad combines several powerful technologies to deliver a fast, lightweight, and feature-rich note-taking experience:Nuxt.js
Fylepad uses Nuxt.js v3.13+ as its frontend framework. Nuxt provides:- Static site generation (SSG) for the web version
- Vue 3 composition API and reactive components
- File-based routing with the
pages/directory - Auto-imported components and composables
- Built-in TypeScript support
ssr: false in nuxt.config.ts) to support both static web deployment and desktop integration.
Tauri
Tauri v2.0 powers the desktop application, providing:- Lightweight native desktop wrapper (< 10MB total size)
- Rust-based backend for performance and security
- Native file system access via
@tauri-apps/plugin-fs - Cross-platform builds for Windows, macOS, and Linux
- No Chromium dependency—uses the system’s native webview
src-tauri/tauri.conf.json and the Rust backend in src-tauri/src/.
TipTap
TipTap v2.7+ provides the rich text editing capabilities. Fylepad leverages:- Extensive TipTap extensions for formatting, tables, code blocks, and more
- Custom extensions in
extensions/for specialized functionality - Markdown serialization via
tiptap-markdown - Bubble and floating menus for inline editing
- Support for mathematical expressions (KaTeX), Mermaid diagrams, and PlantUML charts
components/editor.vue.
Tailwind CSS
Styling is handled by Tailwind CSS v3.4+ with:@tailwindcss/typographyfor rich text stylingtailwindcss-animatefor smooth transitions- Custom configuration in
tailwind.config.js - Color mode support via
@nuxtjs/color-mode(light/dark themes) - Component-based design system in
components/ui/
Additional technologies
Fylepad also integrates:- Pinia - State management for tabs, settings, and editor state
- VueUse - Composition utilities for reactive features
- lowlight - Syntax highlighting for code blocks
- KaTeX - Math expression rendering
- Mermaid - Diagram generation
- Reka UI - Headless UI components for menus and dialogs
Development approach
Fylepad is designed to work in multiple environments:- Desktop app - Full-featured with native file system access
- Web app - Static site deployment with browser-based storage
- PWA - Progressive Web App support via
@vite-pwa/nuxt
Next steps
Setup
Set up your development environment
Architecture
Explore the project structure