Micro Frontends in JavaScript

By Medium - 2020-10-11

Description

What is a Micro Frontend?

Summary

  • What is a Micro Frontend?
  • It extends the concepts of micro services to the frontend world.
  • The current trend is to build a feature-rich and powerful browser application, aka single page app, which sits on top of a micro service architecture.
  • True Micro Frontend Hosts each micro frontend separately (similar to pages in a website) where each knows the URL (integration points) with parameters to navigate to the other.

 

Topics

  1. Frontend (0.2)
  2. Management (0.17)
  3. Backend (0.13)

Similar Articles

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

A Thoughtful Way To Use React’s useRef() Hook

By Smashing Magazine - 2020-11-19

In a React component, useState and useReducer can cause your component to re-render each time there is a call to the update functions. In this article, you will find out how to use the useRef() hook t ...