Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 1.29 KB

README.md

File metadata and controls

42 lines (23 loc) · 1.29 KB

Deploying React Apps

From Development To Production

  • Deployment Steps & Pitfalls
  • Server-side Routing vs Client-side Routing

Deployment Steps

Test Code: Manually & with automated tests

Optimize Code: Optimize user experience & performance

Build App: Run build process to parse, transform & optimize code

Upload App: Upload production code to hosting server

Configure Server: Ensure app is served securely & as intended

Lazy Loading

Load code only when it’s needed

A React SPA is a “Static Website

Only HTML, CSS & JavaScript

  ⬇️

A static site host is needed

Firebase Hosting

Server-side Routing vs Client-side Routing

Resources