2.0.3 • Published 3 years ago

koa-uncapitalize v2.0.3

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

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.

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.0

8 years ago