It will search for HTML assets during the Webpack build and emits index.html with links to that files.
Using npm:
$ npm install --save-dev @intervolga/html-index-plugin
const HtmlIndexPlugin = require('@intervolga/html-index-plugin');
module.exports = {
plugins: [
new HtmlIndexPlugin()
]
}