Giter Site home page Giter Site logo

howardpanton / ng-module-federation Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nrwl/ng-module-federation

0.0 0.0 0.0 1.74 MB

Example showing to use new Nx's module federation support to speed up the builds of Angular apps

Home Page: https://nx.dev/module-federation/faster-builds

JavaScript 11.82% TypeScript 83.30% CSS 0.67% HTML 4.21%

ng-module-federation's Introduction

Speeding Up Angular Builds Using Module Federation

WebPack module federation can be used for developing independently deployable microfrontends and for speeding up the build commands. This repo demonstrates the latter.

This repo contains an application built out of 4 libraries: about-main, cart-main, shop-main and shared-components. What it illustrates is a system built by 3 teams: one working on about (we have a single lib in the repo, but they could have hundreds of libs), one working on cart, and one working on shop.

Normally all the four libraries would be included into the same application and bundled as part of a single WebPack build. This means:

  • All the libraries have to be compiled and bundled together, on one machine, from scratch. Nothing can be reused across CI runs, and nothing can be split across multiple machines. This means that the build time will increase as the application increases and can easily reach 20-30m.
  • All the libraries have to be compiled and served when running the serve command locally. This means that the serve command will keep getting slower as the application gets bigger and can easily reach 5-10m.

Module federation can solve both the problems.

To show how, we split the application into 3 remotes: about, cart, and shop, and the host project. The host project has an implicit dependency on each remote. The repo also makes the shared-components library buildable.

Project graph

Serving Locally

If you run nx serve host, the executor is going to build all the remotes first. If the remotes are available in the cache (local or remote), the executor is going to restore them from the cache. All the remotes in the case are loaded and are available in the application, but they are static and cannot be changed. This is great for running e2e tests in CI but not useful for local development.

If you run nx serve host --devRemotes=shop,cart, the executor is going to build (or fetch from cache) about but is going to start two dev servers, one for shop and another one for cart. The about remote is static, while shop and cart will watch for file changes.

In a large enough system (with say 10-20 remotes), you will often only work on 1 of them, but you still need the rest of them for the system to work. For instance, the remote you are working on might be only accessible via other remotes. Because you will only run your remote in the dev mode, and other remotes will be retrieved from cache, you will be able to run the serve command 10-20 times faster and also see the app reflect you file changes 10-20 times faster.

This gives you a good developer experience: the whole app is available, but only the part you are working on is served and watched. The rest is "served" from cache, so is basically free (both CPU and RAM wise). So your serve command now can take a minute instead of 10 minutes and only require 4GB of RAM instead of 16.

Note, for this to work well in practice, you should get cache hits for other remotes most of the time (rebuilding every remote separately is slower than building everything together), which means that you should have some distributed caching set up.

Building in CI

Using this approach improves the CI performance for two reasons:

  • Most PRs will only rebuild a few remotes, not all of them, and the rest will be retrieved from cache.
  • Every remote can be built on a separate machine, in parallel. So even PRs that change most/all remotes will get significantly faster.

This repo enables Nx Cloud's distributed tasks execution. This is what is going to happen if you say change every single lib in the repo.

One of the agents will start building shared-components. While the components are being built, no remotes can be built cause they consume shared-components from its dist folder. So other agents will start running unit tests and lint checks. When shared-components is built, one agent will start building the about remote, another one will start on cart, etc. When all the remotes are build, some agent is going to build the host, which then can be deployed or used for e2e tests. Note all of this happens transparently without your having to configure anything.

As a result, the worst case scenario build time is: buildOf(shared-components) + buildOf(slowest remote) + buildOf(host) which in practice ends up being significantly faster than building the whole system (often 3-4 times faster). The average build time (where components haven't changed) gets even faster: buildOf(average remote) + buildOf(host).

E2E tests

As you can see in the project graph above, there are four e2e test projects in the repo: one for each remote and one for the host. Having a suite per remote allows us to distribute e2e tests across machines to make them faster and to only run the suites that could be affected by a PR.

Because of Nx Cloud's caching ever e2e test suite isn't going to rebuild the system from scratch. It instead will get it from cache.

Read More

ng-module-federation's People

Contributors

coly010 avatar vsavkin 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.