Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/schamberg97/express-normalizeurl

Fork of unmaintained @AntuanKhanna/express-url, which fixes some of the issues of the former
https://github.com/schamberg97/express-normalizeurl

Last synced: 8 days ago
JSON representation

Fork of unmaintained @AntuanKhanna/express-url, which fixes some of the issues of the former

Awesome Lists containing this project

README

        

# Express-NormalizeUrl
URL normalisation for Express and Connect. Forked from deleted [@AntuanKhanna/express-url](https://github.com/AntuanKhanna/express-url) to serve as an (almost) drop-in replacement (please see Middleware options for that matter) for an unmaintained project.

## About

### Taking care of
* trailing slashes
* repeated slashes
* repeated question marks
* repeated ampersands
* repeated query strings
* case sensitivity (does not affect queries by default)

### Redirect example
```
//assuming default options (see Middleware options)
request: //sLuG??param=val&&param2=VAL2
response: /slug/?param=val&param2=VAL2
```

## Installation
```sh
$ npm install express-normalizeurl
```

## Usage

### As middleware
```js
// Require module
// If you used express-url before, this is the only line you need to change
var expurl = require('express-normalizeurl');

// Process routes through middleware
app.use(expurl());
```

### Middleware options
```js
app.use(expurl({
requestType: 'GET',
redirectStatusCode: 302,
lowercase: true,
lowercaseQueries: false, // False by default, requires lowercase to be set to true to work. If you want 100% compatibility with express-url, when lowercase is true, this also needs to be set true
trailingSlash: true,
repeatedSlash: true,
repeatedQuestionMark: true,
repeatedAmpersand: true
}));
```

## Tests

```sh
$ npm install
$ cd node_modules/express-normalizeurl
$ npm test
```

## Recommendations
* do not serve static files with node directly
* use case sensitive and strict routing

```js
app.set('case sensitive routing', true);
app.set('strict routing', true);
```