rendirect

1.0.0 • Public • Published

Express middleware to render a message and redirect with the meta refresh tag.

Most of the time a 3XX status code with a location header (i.e. res.redirect) works, but sometimes it will be just useful to __rend__er a message before redirecting.

Install

npm install rendirect

Usage

 
//install the middleware
app.configure(function(){
  this.use(rendirect());
});
 
//rendirect
app.get('/', function (req, res){
  res.rendirect({
   wait: 5, 
   message: 'redirecting to the login', 
   url: '/login'
  });
});

Custom template

  this.use(rendirect({view: 'myrendirectpage'}));

License

MIT - José F. Romaniello - 2013

/rendirect/

    Package Sidebar

    Install

    npm i rendirect

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • jfromaniello