Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 982 Bytes

README.md

File metadata and controls

43 lines (26 loc) · 982 Bytes

SSR Project

A simple application built with React and Next.js to practice Server-Side Rendering (SSR). This project is developed following the steps outlined in the book React 18 Design Patterns and Best Practices by Carlos Santana Roldan.

Features

  • Server-Side Rendering for improved SEO and performance.
  • Basic routing with Next.js.
  • Data fetching techniques demonstrated.

Getting Started

Prerequisites

  • Node.js (14+)
  • npm or yarn

Installation

  1. Clone the repo:

    git clone https://github.com/yourusername/ssr-project.git
  2. Navigate into the project directory:

    cd ssr-project
    
  3. Install dependencies:

    npm install
    
  4. Start the development server:

    npm run dev
    

Acknowledgments

  • React 18 Design Patterns and Best Practices by Carlos Santana Roldan. GitHub Repository