express-lowercase-paths
Version:
An Express middleware module that will redirect user HTTP requests that contain uppercase letters, to the same URL converted to lowercase, without modifying query parameters.
14 lines (8 loc) • 490 B
Markdown
Very similar to the unmaintained project [express-uncapitalize](https://github.com/jamiesteven/express-uncapitalize), this middleware redirects any requests which contain uppercase chars to their lowercase forms. With two main changes from the original:
1. Works with all utf-8 strings in paths
1. Keeps query parameters intact
# Installation
npm install express-lowercase-paths
# Usage
var lowercasePaths = require("express-lowercase-paths")
app.use(lowercasePaths())