Building server-side rendering for React in AWS Lambda

By Amazon Web Services - 2021-01-27

Description

This post demonstrates two ways you can implement and deploy a solution for server-side rendering in React applications, by using Lambda or Lambda@Edge. It also shows how to use open-source tools and ...

Summary

  • React is a popular front-end framework used to create single-page applications (SPAs).
  • It sends requests to the backend.
  • While rendering the requested page, the Lambda function calls the backend API to fetch the data.
  • This solution deploys a Lambda@Edge function so it must be provisioned in the US East (N. Virginia) Region.

 

Topics

  1. Frontend (0.4)
  2. Backend (0.26)
  3. Mobile (0.04)

Similar Articles

Serverless React Applications with AWS Lambda

By InfoQ - 2021-02-28

Roman Boiko, solutions architect at AWS, recently published three scenarios to deploy a React application in the cloud or at the edge making use of Amazon Web Services. The scenarios use Amazon S3, Am

Server-Side Rendering (SSR) with React

By DEV Community - 2021-02-28

by Author Samaila Bala Server Side rendering has been the popular way of rendering web applications... Tagged with react, webdev, javascript.

sudheerj/reactjs-interview-questions

By GitHub - 2021-01-12

List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!! - sudheerj/reactjs-interview-questions

Write Vue like you write React

By DEV Community - 2021-02-02

With the Vue 3 Composition API, you can write functional components. What happens if we write them with JSX templates? Are they similar to React functional components?. Tagged with react, vue, javascr ...