Reactivity with SolidJS

Reactivity with SolidJS

4 hours, 32 minutes CC

SolidJS uses its Reactivity to make fine-grained subscriptions that only update parts of the DOM on changes instead of doing heavy DOM diffing. It allows developers to create efficient, reactive user interfaces using a declarative syntax similar to React but with a more lightweight and flexible implementation. This reactivity impacts performance and the whole mental model of how we write our applications.

This course and others like it are available as part of our Frontend Masters video subscription.

Published: January 9, 2023
Get Unlimited Access Now
Table of Contents

Introduction

Overview

Build a Reactive System

Control Flow

Component Authoring

DOM Binding

Building an App

Stores & Context

Routing & Async

Wrapping Up