Package Exports
- webpack-external-import
- webpack-external-import/webpack
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (webpack-external-import) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Webpack External Import
import() URLs and other external resources from third parties, or other webpack builds themselves!
$ yarn webpack-external-import
This project is under active development
Installation
$ yarn nstall webpack-external-import --save
$ yarn add webpack-external-import --save
Getting Started
The basic setup enables a developt to import from URLs. For example:
import('https://code.jquery.com/jquery-3.3.1.min.js');
Step 1 is all that's required for simple dynamic URL imports() Step 2 offers more advanced capabilities, like loading modules from another webpack build
- Add
webpack-external-import/babel
to your.babelrc
:
// .babelrc
{
"plugins": ["webpack-external-import/babel"]
}
A possible .babelrc
could look lke:
// .babelrc
{
"plugins": [
"webpack-external-import/babel",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties"
]
}
- Add
webpack-external-import/babel
to your.babelrc
:
// techblog.webpack.config.js
const URLImportPlugin = require('webpack-external-import/webpack')
{
plugins: [
new URLImportPlugin({
manifestName: 'website-one'
})
]
}
What is the use of webpack-external-import
?
- Load components over the wire - Pull in components at runtime.
- Build leaner micro-frontends (MFE) - Micro-frontends can share bundle chunks and resources with each other while remaining self-contained, removing needless code duplication.
- Split a large, multi-team app into separate deployable chunks while keeping it as one SPA - Large apps can be split into separate feature bundles that can be deployed independently, reducing deployment bottlenecks.
- Manage common js/vendor files automatically. - Instead of dealing with peer dependencies, externals, or anything else, you can load the dependency from a remote source.
- LOSA Style frontend architecture - Run multiple apps on a single page.
- FOSA Style frontend orchestration - Powerful frontend orchestration, self-organizing application architecture. Many builds act as one
Advanced Setup - Injecting Webpack modules from another build
Use the webpack plugin to inject webpack modules from another build into your build.
Important: Make sure manifestName is unique per webpack build. If you have multiple builds, they all need to have a unique manifestName
webpack.config.js
const URLImportPlugin = require('webpack-external-import/webpack')
{
plugins: [
new URLImportPlugin({
manifestName: 'website-one'
})
]
}
Then add the babel plugin to babelrc:
.babelrc
{
"presets": [],
"plugins": [
"webpack-external-import/babel",
"@babel/plugin-syntax-dynamic-import",
]
}
Example Usage
Pretend we have two separate apps that each have their independent build. We want to share a module from one of our apps with the other.
To do this, we add an externalize
comment to the module. The Externalize magic comment tells the plugin to make the module available externally with the name ExampleModule
:
Application A | Application B | |||
---|---|---|---|---|
Provider: Javascript Asset |
// Title.js
import React from 'react';
export
const Title = ({title}) => {
return title
}
export
const alert = (message) => {
alert(message)
}
/*externalize:ExampleModule*/ |
|||
Provider: Code-Splits asset into title-cnk |
// Title.js
componentDidMount() {
import(
/* webpackChunkName: "title-cnk"*/
'./components/Title'
);
} | empty | ||
Consumer File |
// App.js
import('http://website1.com/js/ex-file.js')
.then(({ExampleModule})=>{
ExampleModule.alert('custom alert')
});
|
|||
React Example |
import {
ExternalComponent
} from 'webpack-external-import'
const SomeComponent = (props)=>{
return (
<ExternalComponent
src={
import(/* importUrl */ this.state.url)
}
module="ExampleModule"
export='Title'
title={'Some Heading'}
/>
)
} |
Explanation
Pretend we have two separate apps that each have their own independent build. We want to share a module from one of our apps with the other.
To do this, we add an externalize comment to the module. This tells the plugin to make the module available externally with the name ExampleModule
:
// Title.js
import React from 'react';
export const Title = ({title}) => {
return (<h1>{title}</h1>)
}
export const alert = (message) => {
alert(message)
}
/*externalize:ExampleModule*/
The ExampleModule
can now be pulled into our other app using import
:
import('http://website1.com/js/theExampleFile.js').then(({ExampleModule})=>{
ExampleModule.alert('custom alert')
});
There is also a React component, ExternalComponent
, that can be useful for importing React components:
import {ExternalComponent} from 'webpack-external-import'
()=>{
return (
<ExternalComponent src={import(/* importUrl */ helloWorldUrl)} module="ExampleModule" export='Title' title={'Some Heading'}/>
)
}
Full Example
// WEBSITE-ONE
//app.js
import React, {Component} from 'react';
import {hot} from 'react-hot-loader';
import HelloWorld from './components/hello-world';
import {ExternalComponent} from 'webpack-external-import'
class App extends Component {
constructor(props) {
super(props);
this.state = {};
}
componentDidMount() {
import('http://localhost:3002/importManifest.js').then(() => {
this.setState({manifestLoaded: true})
import(/* importUrl */'http://localhost:3002/' + window.entryManifest['website-two']['hello-world.js']).then(({someModule}) => {
console.log('got module, will render it in 2 seconds')
someModule.externalFunction()
setTimeout(() => {
this.setState({loaded: true})
}, 2000)
});
})
}
renderDynamic = () => {
const {loaded} = this.state
if (!loaded) return null
return this.state.loaded && __webpack_require__('someModule').default()
}
render() {
const {manifestLoaded} = this.state
const helloWorldUrl = manifestLoaded && 'http://localhost:3002/' + window.entryManifest['website-two']['Title.js']
return (
<div>
<HelloWorld/>
{ manifestLoaded && <ExternalComponent src={import(/* importUrl */ helloWorldUrl)} module="TitleComponent" export='Title' title={'Some Heading'}/>}
{this.renderDynamic()}
</div>
)
}
}
export default App
//WEBSITE-TWO
//App.js
class App extends Component {
constructor(props) {
super(props);
this.state = {
component: null
};
}
componentDidMount() {
// Easy way to code-split files you want to use on other applications
// I also rename the chunk with webpackChunkName, so I can reference it by a custom name in window.entryManifest
import(/* webpackChunkName: "Title"*/ './components/Title');
import(/* webpackChunkName: "hello-worl-chunk"*/ './components/hello-world').then((HelloWorld) => {
this.setState({component: HelloWorld.default})
})
}
render() {
if (!this.state.component) return <div/>
const {component: HelloWorld} = this.state
return <HelloWorld title="Hello from React webpack"/>;
}
}
export default hot(module)(App);
// Title.js
import React from 'react';
export const Title = ({title}) => {
return (<h1>{title}</h1>)
}
/*externalize:TitleComponent*/
API:
// webpack.config.js
module.exports = {
output: {
publicPath
},
plugins: [
new ManifestPlugin(options)
]
}
options.fileName
Type: String
Default: manifest.json
The manifest filename in your output directory.
options.publicPath
Type: String
Default: output.publicPath
A path prefix that will be added to values of the manifest.
options.basePath
Type: String
A path prefix for all keys. Useful for including your output path in the manifest.
options.writeToFileEmit
Type: Boolean
Default: false
If set to true
will emit to build folder and memory in combination with webpack-dev-server
options.seed
Type: Object
Default: {}
A cache of key/value pairs to used to seed the manifest. This may include a set of custom key/value pairs to include in your manifest or may be used to combine manifests across compilations in multi-compiler mode. To combine manifests, pass a shared seed object to each compiler's ManifestPlugin instance.
options.filter
Type: Function(FileDescriptor): Boolean
Filter out files. FileDescriptor typings
options.map
Type: Function(FileDescriptor): FileDescriptor
Modify files details before the manifest is created. FileDescriptor typings
options.sort
Type: Function(FileDescriptor): number
Sort files before they are passed to generate
. FileDescriptor typings
options.generate
Type: Function(Object, FileDescriptor): Object
Default: (seed, files) => files.reduce((manifest, {name, path}) => ({...manifest, [name]: path}), seed)
Create the manifest. It can return anything as long as it's serializable by JSON.stringify
. FileDescriptor typings
options.serialize
Type: Function(Object): string
Default: (manifest) => JSON.stringify(manifest, null, 2)
Output manifest file in a different format then json (i.e., yaml).
ExternalComponent
React Component
Props:
src
: string - Import source URL
module
: string - Module name, must match what was declared using /externalize:ExampleModule/
export
: string - The named export to use as a component from the module being imported
Usage
<ExternalComponent src={import(/* importUrl */ helloWorldUrl)} module="ExampleModule" export='Title' title={'Some Heading'}/>
FileDescriptor
FileDescriptor {
path: string;
name: string | null;
isInitial: boolean;
isChunk: boolean;
chunk?: Chunk;
isAsset: boolean;
isModuleAsset: boolean;
}
The entry manifest
Each webpack build using the webpack plugin emits a manifest file to the build output directory.
The manifest allows you to find a chunk that you want, even if the name has been hashed.
Below is an example of using the manifest.
In this file, I am importing code from another website/build. My application is loading website two's manifest, which is automatically added to window.entryManifest
under the manifestName
I set in the webpack plugin. After that, I'm importing a chunk from website-two, in this case - the chunk is code-split.
componentDidMount() {
import('http://localhost:3002/importManifest.js').then(() => {
this.setState({manifestLoaded: true})
import(/* importUrl */'http://localhost:3002/' + window.entryManifest['website-two']['hello-world.js'])
.then(({someModule}) => {
console.log('got the module, will render it in 2 seconds..')
someModule.externalFunction()
setTimeout(() => {
this.setState({loaded: true})
}, 2000)
});
})
}
DEMO
How to start (using the demo)
yarn nstall
thencd manual; yarn nstall
yarn demo
from the root directory
This comment runs the compile command to build a new copy of the plugin, as well as start the little manual demo project