Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

192
Views
How to use a federated React module if the host React application isn't using Webpack?

I have two React applications. One is the remote app, and other is the host app. The remote app uses Webpack 5 using which I have federated the module. The host app uses Rollup for all purposes. I want the host application to use the federated module. How can I achieve this?

The below is how we have exposed the remote app which is running on port 3000.

            name: "ResetPassword",
            filename: "remoteEntry.js",
            remotes: {},
            exposes: {
                "./ResetPassword": "./src/pages/create-password",
            },
            shared: { 
                ...packageJsonDeps,
                react: { singleton: true, requiredVersion: packageJsonDeps.react },
                "react-dom": { singleton: true, requiredVersion: packageJsonDeps["react-dom"] }
            },
        })
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

This official Module Federation example solves exactly this issue.

Basically -

  1. In Rollup host - add Module federation in the plugins section of the config.
    a. define remotes.
    b. define shared
  2. Add Rollup remote in MF app.

Check this article for a simplistic walkthrough

btw it's good practice to define the shared libraries/packages in your package.json something like

shared: require('../package.json').dependencies
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!