https://github.com/codesandtags/react-19-demo
It is a simple project that demonstrates the use of React 19 features. Inspired in Frontendmasters course by Brian Holt.
https://github.com/codesandtags/react-19-demo
Last synced: 2 months ago
JSON representation
It is a simple project that demonstrates the use of React 19 features. Inspired in Frontendmasters course by Brian Holt.
- Host: GitHub
- URL: https://github.com/codesandtags/react-19-demo
- Owner: codesandtags
- Created: 2025-01-26T05:00:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-27T04:55:26.000Z (over 1 year ago)
- Last Synced: 2025-01-27T05:26:13.617Z (over 1 year ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React 19 Demo
It is a simple project that demonstrates the use of React 19 features. Inspired in Frontendmasters course by Brian Holt.
## Project Contents
This project showcases several React 19 features including:
- Use Hook
- Resource Components
- Actions
- Asset Loading
- Suspense and Streaming SSR
- Server Components
## Key Dependencies
- **react**: ^19.0.0 - Core React library
- **react-dom**: ^19.0.0 - React DOM rendering
- **vite**: ^5.0.0 - Build tool and development server
- **@vitejs/plugin-react**: ^4.2.0 - Official React plugin for Vite
- **typescript**: ^5.2.0 - TypeScript support
- **tailwindcss**: ^3.0.0 - Utility-first CSS framework
- **eslint**: ^8.0.0 - JavaScript/TypeScript linter
- **prettier**: ^3.0.0 - Code formatter
## Getting Started
Install dependencies
```bash
# Install dependencies
npm install
# Run development server
npm run dev
# Build for production
npm run build
```