1.0.2 • Published 2 years ago

@flashfix/express-trailingslash v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@flashfix/express-trailingslash

ExpressJS middleware that redirects requests with trailing slashes to a clean one without it

Usage:

app.use(require('@flashfix/express-trailingslash')());

When used together with serve-static, pass redirect: false option to it to avoid conflicts:

app.use(require('serve-static')(`${__dirname}/public`, { redirect: false }));