everweij / solidjs-fine-grained-reactivity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fine-grained reactivity - A deep dive into SolidJS

The goal of this repository is to learn how SolidJS works in general by attempting to create a SolidJS-clone from scratch which is called "Fluid". In order to test assumptions I've created a small todo-app both with Solid as well as Fluid, and see whether I can get the same results with more or less the same code.

Reading material / sources

In order to create Fluid the following sources were used:

I recommend to read these first before jumping into the source of this project.

Getting started

This repository is setup as a monorepo with multiple packages (workspaces). Although I use Yarn myself, you should also be fine by using a different package manager, like NPM or PNPM.

After cloning this repo, please install all dependencies by running:

yarn install

Then, in order to start the actual todo-apps, you can run the following scripts:

# runs our example todo-app, written with Fluid
yarn example

# runs the same todo-app, written with SolidJS
yarn solid

# runs tests (append '--watch' to enable watch-mode)
yarn test

Structure

This repo is divided into various packages / workspaces. A brief overview:

  • example, the example todo-app written with Fluid
  • fluid, the SolidJS-clone
  • shared, only some stylesheets for now which are shared between the two todo-apps
  • solid, the Solid implementation of the todo-app for comparison
  • vite-plugin-fluid, Fluid's attempt to create a Vite plugin (vite-plugin-solid counterpart)

Documentation

Please consult the readme.md in each workspace for more info.

About


Languages

Language:TypeScript 93.6%Language:CSS 5.4%Language:HTML 1.0%