Skip to content

jmeyers91/koa-push

Repository files navigation

Koa Push

Build Status

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/')
  )
);

About

Koa middleware for handling client-side pushstate routes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published