Currently, I have a React application built with Webpack 1.15.0.
I want to load into my application one or more precompiled bundles at runtime, like in a plugin system. The main application doesn't know the names of these bundles, but it knows that they will be in a specific directory.
I found this solution: Solution: load independently compiled Webpack 2 bundles dynamically but it seems a bit complex.
Can I accomplish this in a simpler way by using Webpack, Fusebox, Parcel or any other tool?