mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
21 lines
634 B
Markdown
21 lines
634 B
Markdown
# Introduction
|
|
|
|
This is a tutorial that introduces the concepts and usage of Vide.
|
|
|
|
Vide is heavily inspired by [Solid](https://www.solidjs.com/).
|
|
|
|
## Why Vide?
|
|
|
|
Vide's reactive and declarative API aims to let you program UI as simply as
|
|
possible, with a strong focus on how data flows through your application.
|
|
|
|
Some of Vide's main design choices:
|
|
|
|
- Syntax minimal.
|
|
- Data oriented.
|
|
- Typechecking compatible.
|
|
- Instance independent.
|
|
|
|
Vide's reactivity operates with the concept
|
|
of scopes which carries a learning curve, though is what makes Vide's minimal
|
|
syntax possible. The crash course will introduce these concepts gradually.
|