https://github.com/imnotannamaria/react-redux-zustand-fundamentals
Redux fundamentals, Application with Redux, creation of hooks, API, Async Thunks, Zustand Setup, migration from Redux to Zustand, and unit tests for Redux and Zustand.
https://github.com/imnotannamaria/react-redux-zustand-fundamentals
jsonserver react redux vite vitest zustand
Last synced: 4 months ago
JSON representation
Redux fundamentals, Application with Redux, creation of hooks, API, Async Thunks, Zustand Setup, migration from Redux to Zustand, and unit tests for Redux and Zustand.
- Host: GitHub
- URL: https://github.com/imnotannamaria/react-redux-zustand-fundamentals
- Owner: imnotannamaria
- Created: 2024-04-15T17:06:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T20:07:16.000Z (about 1 year ago)
- Last Synced: 2024-12-27T05:42:32.767Z (5 months ago)
- Topics: jsonserver, react, redux, vite, vitest, zustand
- Language: TypeScript
- Homepage:
- Size: 246 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React + Zustand - Fundamentals
- Redux fundamentals
- Application with Redux
- Creation of hooks
- Fake API
- Async Thunks
- Zustand Setup
- Migration from Redux to Zustand
- Unit tests## Redux - Learning Concepts
Reducer - Information that we will share between all components of an application.Slice - Organize state into smaller chunks
Acctions - All actions that the user can take to change some information within a state
## Run
To run the projet
```bash
npm run server
``````bash
npm run dev
```