Catch-all mounting of koa apps and middleware for HTML GET requests.
$ npm install koa-mount-html
const koa = require('koa');
const mountHtml = require('koa-mount-html');
const serve = require('koa-static');
const app = koa();
// with `defer: true`, koa-mount-html will only catch requests that are not
// answered by other middleware
app.use(mountHtml(function *sendHtml() {
yield send(this, '/index.html', { root: __dirname + '/public' });
}, { defer: true }));
app.use(serve('public/static_pages'));
const koa = require('koa');
const mountHtml = require('koa-mount-html');
const webpackConfig = require('./webpack.conf');
const compiler = webpack(webpackConfig);
const publicPath = webpackConfig.output.publicPath;
const app = koa();
app.use(mountHtml(
rewrite('/*', publicPath + '/index.html')
));
app.use(mount(
publicPath, webpackDevMiddleware(compiler, serverOptions)
));
defer
If true, serves after yield next, allowing any downstream middleware to respond first.includeDotPaths
If true, then paths including a dot (i.e. '/staticPage.html') will be cought as well.