Coder Social home page Coder Social logo

micro-frontend-demo's Introduction

Micro frontends using iframes

This is a demo of how to use iframes to create micro front-ends using iframes.

Creation of an iframe

The shell app gets a URL, fetches its HTML and renders it in an iframe. After the HTML is being patched, we run the following

 const doc = document.implementation.createHTMLDocument();
doc.documentElement.innerHTML = appHTML;
const base = doc.createElement('base');
base.href = getHref(appName); // the base URL of the app
// Writing content
iframe.contentDocument.open();
iframe.contentDocument.write(doc.documentElement.innerHTML);
iframe.contentDocument.close();

This way we can create an iframe with a base URL that is different from the shell's base URL and control its visibility only after it is loaded.

Running the demo

All apps can be run inside docker containers. To run the demo, run the following commands:

docker-compose up -d

Make all iframes friendly

All iframes runs on docker and lies behind an nginx proxy which has its own docker container.

micro-frontend-demo's People

Contributors

ranwahle avatar dependabot[bot] avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.