0.4.0 • Published 10 years ago

express-alias v0.4.0

Weekly downloads
33
License
-
Repository
github
Last release
10 years ago

Travis build status

Express-Alias

Adds a convenience app.alias() method to Express for aliasing redirect routes.

Supports both Express 2 and Express 3.

Example

// uses Express's default redirect status (currently 302):
app.alias('/privacy', '/privacy-policy');
app.alias('/terms', '/terms-of-service');

// but you can explicitly specify a status as well:
app.alias('/aseem', '/aseemk', 301);

Installation

npm install express-alias

Usage

You can either require() Express normally and then extend it:

var express = require('express');
require('express-alias');

Or just require() this module, which returns the extended Express for convenience:

var express = require('express-alias');

TODO

Support route parameters (e.g. '/user/:id' '/users/:id').

License

MIT. © 2012 Aseem Kishore.

Credits

TJ Holowaychuk for the awesome Express.

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

12 years ago