Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Learn React with TypeScript
  • Table Of Contents Toc
  • Feedback & Rating feedback
Learn React with TypeScript

Learn React with TypeScript

By : Carl Rippon
close
close
Learn React with TypeScript

Learn React with TypeScript

By: Carl Rippon

Overview of this book

Reading, navigating, and debugging a large frontend codebase can feel overwhelming for web developers, but you can overcome this with expert guidance from a seasoned software professional with over 20 years’ experience in developing a complex line of business applications. This book will help you learn React, TypeScript, and Next.js—the core technology stack behind scalable, high-performance web applications used by top companies. This third edition of Learn React with TypeScript is updated with the latest features of React 19, including server components, server actions, and powerful new hooks. The chapters show you how to use TypeScript’s advanced features for enhanced code reliability and maintainability when building robust, type-safe components. You’ll explore efficient data fetching strategies with RSCs in Next.js, as well as in single-page applications (SPAs). The book also covers modern state management with Zustand, best practices for form handling, and strategies for building well-structured, reusable components that streamline development. Finally, you’ll focus on unit testing with Vitest, ensuring your React components are resilient and error-free. By the end of this book, you'll have at your disposal the skills and best practices needed to create maintainable and performant React applications with TypeScript and Next.js.
Table of Contents (19 chapters)
close
close
Free Chapter
1
Part 1: Introduction
5
Part 2: App Fundamentals
9
Part 3:Data
13
Part 4:Advanced React
18
Index

Fetching data using an RSC

In this section, we will implement data fetching in the blog post list and blog post detail RSCs to get the data from our new database. We will structure the code that interacts with the database in separate functions – we will call them query functions.

Implementing query functions

First, we will implement functions to connect to the database and query it to get the necessary data. Follow these steps:

  1. We will start by storing the path to the database in an environment variable. This is common practice because it allows the app in different environments to connect to different databases. Create a file called .env in the project root with the following content:
    DB_URL=file:src/data/blog.db
  2. Create a file called queries.ts in the src/data folder. Add the following content to queries.ts to import a function from libSQL that will allow us to connect to the database:
    import { createClient } from ‘@libsql/client’;
  3. Create a...

Unlock full access

Continue reading for free

A Packt free trial gives you instant online access to our library of over 7000 practical eBooks and videos, constantly updated with the latest in tech

Create a Note

Modal Close icon
You need to login to use this feature.
notes
bookmark search playlist download font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete

Delete Note

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete

Edit Note

Modal Close icon
Write a note (max 255 characters)
Cancel
Update Note

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY