Beginner

Note Taking App

A beginner-friendly Svelte example: Create a note-taking app with local storage and categories

What You'll Learn

Project Structure

note-taking/
├── src/
│   ├── lib/
│   │   ├── NoteList.svelte
│   │   ├── NoteEditor.svelte
│   │   ├── CategorySelect.svelte
│   │   └── SearchBar.svelte
│   ├── stores/
│   │   ├── notes.js
│   │   └── categories.js
│   └── App.svelte
├── public/
│   └── index.html
└── package.json

Key Features

Get Started