Skip to content

joakimgunst/react-state-management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React State Management

Comparison of different approaches to managing global state in React apps.

Database

The async examples require a Postgres database with the following schema:

CREATE TABLE "todos" (
    "id" varchar NOT NULL,
    "text" text NOT NULL,
    "completed" bool NOT NULL DEFAULT false,
    PRIMARY KEY ("id")
);

To connect to the database, add the following environment variables:

PGHOST
PGUSER
PGPASSWORD
PGDATABASE

About

Comparison of different approaches to managing global state in React apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published