问题
I have spent a lot of time looking into this, but to no avail. I am aware of how code splitting and dynamic bundling works in Webpack using the import promise API.
Howevr, my use case is that I have two completely separate bundles, generated separately using different webpack builds. To give you perspective, I am building React components and there is a requirement to dynamically load a react component into the page that has been compiled in a different process. Is this possible in react? I do have control over both webpack builds, so I can exclude dependencies, etc.
Update: I just looked at Vue.js, and how it allows developers to register Vue.js components and then reference them later in the code. I could potentially load my Vue.js component scripts before my page script. I'm trying to see if I can do something similar in React.
回答1:
Did I understand you correctly: you have essentially got
- a library of custom React components (built by Webpack build #1)
- a React app that needs to use some (all) of these components (built by Webpack build #2, totally separate from #1)
?
If yes, then read on.
The "Is this possible in react?" question should instead be "Is this possible in Webpack?", and the answer is "Yes". The following is tested with Webpack 2, but should also work with v.1.
Let's call your projects Lib (your React component library) and App (the library consumer).
In the Lib project:
Create an entry point file, say
index.js, that exports all the custom React components like this:import {Button} from './button'; import {DatePicker} from './DatePicker'; import {TextBox} from './textBox'; export const MyComponentLib = { Button, DatePicker, TextBox };Update
webpack.config.jsto make the project's bundle a UMD library (could also be 'var'), and set the entry point to the aboveindex.jsfile. Doing so will make your library available via a global variable namedMyComponentLib(the name comes from theexportabove) in the consuming app later on:... output: { path: './dist', filename: 'mylib.bundle.js', libraryTarget: 'umd' }, ... entry: './index.js', ...
On to the App project:
In the
index.htmlfile you will have two<script>tags: one formylib.bundle.js(the output of theLibproject), and another for the bundle of theAppproject itself. You might have more bundles (app, vendor etc.), I'm just simplifying things here.Update
webpack.config.jsto mark the component library as external dependency. Here,MyComponentLibis, again, the name of the global variable the library is available at, andmyComponentsis the name to use inimportstatements:... externals: { myComponents: 'MyComponentLib' }, ...
Now, in App you can import a component like this:
import {DatePicker} from 'myComponents';
This will dynamically load DatePicker from the component library at run time via the global variable.
Bonus: if you use eslint, you don't want it to complain about missing modules that you know are external; add this to your .eslintrc:
...
"settings": {
"import/core-modules": ["myComponents"]
},
...
来源:https://stackoverflow.com/questions/42450048/webpack-how-can-i-combine-two-completely-separate-bundles-using-dynamic-bundlin