1.0.0 • Published 9 months ago

@entva/express-trailingslash v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

@entva/express-trailingslash

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

Usage:

app.use(require('@entva/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 }));