2.1.0 • Published 7 years ago

koa-no-trailing-slash v2.1.0

Weekly downloads
536
License
CC0-1.0
Repository
github
Last release
7 years ago

ComVer

Koa middleware that redirects all requests to an URL with a trailing slash to the same URL without it, ignoring the query string (key and value).

Installation

npm install koa-no-trailing-slash

Usage

const app = new (require('koa'));
app.use(require('koa-no-trailing-slash')());
app.use(async (ctx, next) => {
   ctx.response.body = 'Did this URL had a trailing slash?';
});
app.listen(8000);

License

CC0

Related middleware

koa-lowercase-url