koa-uncapitalize

2.0.3 • Public • Published

Koa Uncapitalize

NPM Build Status

A koajs middleware to uncapitalize routes based on a similar module that was created for express: express-uncapitalize.

Installation

Install the package using npm:

$ npm install --save koa-uncapitalize

Usage

Usage is easy: just require the module and app.use it:

const uncapitalize = require("koa-uncapitalize");
app.use(uncapitalize);

Or all at once:

app.use(require("koa-uncapitalize"));

Now all users accessing uppercase routes will be redirected (301) to the lowercase equivalent: http://example.com/TEST -> http://example.com/test.

License

Licensed under the MIT license. For more information please see the LICENSE file that should have been included with the project.

Dependents (0)

Package Sidebar

Install

npm i koa-uncapitalize

Weekly Downloads

0

Version

2.0.3

License

MIT

Unpacked Size

3.69 kB

Total Files

5

Last publish

Collaborators

  • mfinelli