4.4 KiB
4.4 KiB
Architecture Specification
Overview
QuickNotes is a personal knowledge management application with a client-server architecture. It consists of a Go backend and a Svelte frontend, with SQLite as the database.
System Components
Backend
The backend is built with Go and uses the following key components:
- Gin Web Framework: Handles HTTP routing and middleware
- GORM: Object-relational mapping for database operations
- SQLite: Embedded database for data storage
- Domain Modules:
- Notes: Manages note creation, retrieval, and linking
- Readlist: Handles read-later functionality
- Feeds: Manages RSS/Atom feed subscriptions and entries
Frontend
The frontend is built with Svelte and SvelteKit, providing a responsive single-page application experience:
- SvelteKit: Framework for building the frontend application
- Bulma CSS: CSS framework for styling
- FontAwesome: Icon library
- D3.js: Used for the notes graph visualization
- Marked: Markdown parsing and rendering
Database
SQLite is used as the database, with the following main tables:
- Notes: Stores user notes
- Note Links: Stores relationships between notes
- Read Later Items: Stores saved articles
- Feeds: Stores feed subscriptions
- Entries: Stores feed entries
Communication Flow
- The frontend communicates with the backend via RESTful API calls
- The backend processes these requests, interacts with the database, and returns responses
- The frontend renders the data and handles user interactions
┌─────────────┐ HTTP/JSON ┌─────────────┐ SQL ┌─────────────┐
│ Frontend │ ─────────────────► │ Backend │ ───────────► │ Database │
│ (Svelte) │ ◄───────────────── │ (Go) │ ◄─────────── │ (SQLite) │
└─────────────┘ └─────────────┘ └─────────────┘
Deployment Architecture
The application is designed to be run locally as a single binary that embeds the frontend assets:
- The Go backend serves the compiled Svelte frontend
- The SQLite database is stored as a local file
- The application is accessed via a web browser at
http://localhost:3000
File Structure
quicknotes/
├── main.go # Application entry point
├── go.mod # Go module definition
├── go.sum # Go module checksums
├── notes/ # Notes module
│ ├── model.go # Note data models
│ ├── service.go # Business logic
│ └── routes.go # API endpoints
├── readlist/ # Readlist module
│ ├── model.go # Readlist data models
│ ├── service.go # Business logic
│ └── routes.go # API endpoints
├── feeds/ # Feeds module
│ ├── model.go # Feed data models
│ ├── service.go # Business logic
│ └── handler.go # API endpoints
├── frontend/ # Frontend application
│ ├── src/ # Source code
│ │ ├── routes/ # SvelteKit routes
│ │ ├── lib/ # Shared components and utilities
│ │ └── app.html # HTML template
│ ├── static/ # Static assets
│ └── build/ # Compiled frontend (embedded in binary)
└── notes.db # SQLite database file
Design Patterns
- Model-View-Controller (MVC): The backend follows an MVC-like pattern with models, services, and handlers
- Repository Pattern: Database operations are abstracted in service layers
- Dependency Injection: Services are injected into handlers
- RESTful API: The backend exposes a RESTful API for the frontend to consume
Security Considerations
- The application is designed for local use and does not implement authentication
- Input validation is performed on both client and server sides
- Content Security Policy headers are set for frontend assets
- The application uses parameterized queries to prevent SQL injection