1.0.2 • Published 4 years ago

micro-redirect v1.0.2

Weekly downloads
2,332
License
MIT
Repository
-
Last release
4 years ago

Micro Redirect -

A redirect function for Zeit's micro

Build Status Maintainability Test Coverage

Usage

Firstly, install it:

npm install --save micro-redirect

Then import it like this:

const redirect = require("micro-redirect");

And use it the same you'd use Zeit's send:

module.exports = async (req, res) => {
  const statusCode = 302;
  const location = "http://github.com";

  redirect(res, statusCode, location);
};

API

redirect(res, statusCode, location)

  • statusCode is a Number with the HTTP redirect code, and must always be supplied.
  • location is a String used to set the res header location, and must always be supplied.