Notes
A simple note-taking app with categories and full-text search.
Features
- Rich text — Write notes with Markdown support
- Categories — Organize notes into custom categories
- Search — Full-text search across all notes
- Auto-save — Notes save automatically
- Pinning — Pin important notes to the top of the list v3.12
- Aurora integration — Aurora can read, create, and search notes
v3.12 Updates v3.12
Notizen anpinnen
Wichtige Notizen koennen angepinnt werden und erscheinen immer oben in der Liste:
- Pin/Unpin — Klick auf das Pin-Icon neben dem Notiz-Titel
- Sortierung — Angepinnte Notizen werden vor allen anderen angezeigt
- Visuell — Pin-Icon Markierung fuer angepinnte Notizen
- Persistent — Pin-Status wird in der Datenbank gespeichert
result.ok Bugfix
fetch()-Responses werden jetzt korrekt auf .ok geprueft. Zuvor konnte ein fehlerhafter API-Response unbemerkt bleiben.
Interface
Three-column layout (responsive):
- Sidebar — Category list + "All Notes" view
- Note list — Notes in selected category
- Editor — Note content editor
On mobile (< 768px), the sidebar becomes an overlay accessible via hamburger menu.
Data Storage
Notes are stored in the niuton_notes database table:
| Column | Type | Description |
|---|---|---|
id | serial | Primary key |
user_id | integer | Owner |
title | varchar | Note title |
content | text | Note body (Markdown) |
category | varchar | Category name |
is_pinned | boolean | Pin status |
created_at | timestamp | Creation date |
updated_at | timestamp | Last modified |