general_posts/svelte-introduction/README.md
thecodebranch acdeb73db7 add-svelte-blog-post (#1)
Add svelte blog post code sample for reference.
2024-06-27 20:07:23 +00:00

21 lines
588 B
Markdown

# Svelte Introduction
This sample code is relate to the following blog post:
- https://thecodebranch.com/posts/svelte/why-svelte
Here, we showcase a simple todo component that highlights some basic features Svelte. It also uses a development server called Vite, which helps to facilitate local development and project bundling. For example, it provides hot-reloading capabailities, local server proxying, and more!
## Setup
Navigate to this directory and run:
```bash
yarn install
yarn dev
```
## Demo
![svelte todo component](./images/todo-component.png "Svelte Todo Component")