NextJS
getServerSideProps
: For Pre-rendering pages on each request
getStaticProps
: Pre-render the page at build time
getStaticPaths
: for static generation of dynamic components that use getStaticProps
- React Hook Library for client side data fetching React Hooks for Data Fetching – SWR
- Repo Template: GitHub: Blazity/next-enterprise: 💼 An enterprise-grade Next.js boilerplate for high-performance, maintainable apps. Packed with features like Tailwind CSS, TypeScript, ESLint, Prettier, testing tools, and more to accelerate your development.
- NEXT Server Components are just serialized virtual dom over the network Youtube: Simplifying Server Components – Mark Dalgleish, React Advanced 2023
- NEXT Server Components & Tainting
- How to Think About Security in Next.js | Next.js
- Youtube: From 0 to Production - The Modern React Tutorial (RSCs, Next.js, Shadui, Drizzle, TS and more)
“use client” and “use server”