This is fork of react-umd-loader which can also load ES6 React modules in UMD format. This version supports React 16. For support of earlier versions of React, use version 1.x of this library.
Async load any remote UMD compatible React component into your app.
This component use script.js for loading the remote component.
See also : React jspm loader
You can use unpkg.com or whatever hosting. The only requirement is that the build supports UMD.
This example loads the remote react-json-viewer
component into our app
import UmdLoader from 'react-umd-loader-uni'
let cmp = (<UmdLoader url="https://rawgit.com/coryhouse/my-component/master/umd/my-component.js" name="MyComponent" props={{ username: 'Person', message: 'you are here' }}>
<p>Loading remote component...</p>
</UmdLoader>);
As UMD exposes objects on window
, you also need to define the name of the final module.
This project use the great react-component-boilerplate