
Preact
Preact provides the thinnest possible Virtual DOM abstraction on top of the DOM. It builds on stable platform features, registers real event handlers and plays nicely with other libraries.
Not Found – Preact Guide
How to get started with Preact. We'll learn how to setup the tooling (if any) and get going with writing an application
Differences to React – Preact Guide
What are the differences between Preact and React. This document describes them in detail
Not Found – Preact Guide
By moving compat into the same package as Preact itself, there's nothing extra to install in order to use libraries from the React ecosystem. The compatibility layer is now called preact/compat, …
Learn Preact – Preact Tutorial
Learn Preact – Preact Tutorial
Demos & Examples – Preact
This pages lists a bunch of demos and examples you can use to learn Preact. 💁 Built one of your own? Add it!
Signals – Preact Guide
In Preact, when a signal is passed down through a tree as props or context, we're only passing around references to the signal. The signal can be updated without re-rendering any …
API Reference – Preact Guide
preact/compat is our compatibility layer that allows you to use Preact as a drop-in replacement for React. It provides all of the APIs of preact and preact/hooks, whilst also providing a few more …
REPL: Try Preact in the browser – Preact
15 16 17 import { render } from 'preact'; import { useState } from 'preact/hooks'; function Counter () { const [count, setCount] = useState (0);
Signal Boosting – Preact
Sep 24, 2022 · The new release of Preact Signals brings significant performance updates to the foundations of the reactive system. Read on to learn what kinds of tricks we employed to make …