How's It

Examples

These have implementations for different common use cases in apps, to show you an easy direct comparision!

If you want to go over the difference in rendering techniques, runtimes, etc, go to Learn page.

1. Styling

How to style different components native to each framework.

Frontend
2. Counter

Interactive counter with two buttons to increment and decrement the counter.

Frontend
Interactive
3. Interval

Async 1 second interval/timer that increments a number by 1.

Frontend
Async
4. Todo

Interactive todo list that starts with some initial items when created/mounted.

Frontend
Interactive
5. Fetch

Async call on each button click to fetch some data from an API.

Frontend
Async
6. Persistent fetch

Async call to fetch some data from an API when mounted.

Frontend
Async
7. CRUD

Simple CRUD (Create, Read, Update, Delete) API that reads from a JSON file.

Backend
API