An open API service indexing awesome lists of open source software.

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.

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
```