koa-push
v1.0.4
Published
Koa middleware for handling client-side pushstate routes.
Downloads
280
Readme
Koa Push
Koa middleware for handling client-side pushstate routes. By default, a push state request is any GET
request that has no file extension and doesn't begin with /api/
.
Install
npm install koa-push
Usage
import koaPushState from 'koa-push';
app.use(koaPushState('/path/to/index.html'));
Alternatively, you can pass your own check to determine if the request should be handled by the push state middleware:
import koaPushState, { isPushStateRouteDefault } from 'koa-push';
app.use(
koaPushState(
'/path/to/index.html',
context =>
isPushStateRouteDefault(context) ||
context.request.path.startsWith('/routes/')
)
);