2.0.3 • Published 3 years ago

koa-remove-trailing-slashes v2.0.3

Weekly downloads
425
License
MIT
Repository
github
Last release
3 years ago

koa-remove-trailing-slashes

Koa middleware that removes trailing slashes on paths.

Notice: koa-remove-trailing-slashes@2 supports koa@2; if you want to use this module with koa@1, please use koa-remove-trailing-slashes@1.

Build Status Coverage Status npm

Installation

npm install koa-remove-trailing-slashes

API

const Koa = require('koa');
const app = Koa();
app.use(require('koa-remove-trailing-slashes')(opts));
  • opts options object.

Options

  • defer - If true, serves after yield next, allowing any downstream middleware to respond first. Defaults to true.
  • chained - If the middleware should continue modifying the url if it detects that a redirect already have been performed. Defaults to true.

Example

const Koa = require('koa');
const removeTrailingSlashes = require('koa-remove-trailing-slashes');

const app = new Koa();

app.use(removeTrailingSlashes());

app.use(ctx => {
  ctx.body = 'Hello World';
});

app.listen(3000);

License

MIT