Socket
Book a DemoInstallSign in
Socket

predirect

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

predirect

Simple http redirect method

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

predirect

Simple http redirect method

Build Status downloads

Usage

var redirect = require('predirect');
var http = require('http');

http.createServer(function (req, res) {

  redirect(req, res, 'https://github.com');

}).listen(3333);

or with currying:

var predirect = require('predirect');
var http = require('http');

http.createServer(function (req, res) {

  var redirect = predirect(req, res);

  // ...

  redirect('https://github.com');

}).listen(3333);

API

redirect(req, res, url[, text])

Redirect to url and respond with text if the request method isn't HEAD.

text gets parsed by util.format and defaults to -> %s.

If you only pass req and res, this will return a function you can then pass url and text to.

redirect(ctx, url[, text])

Pass a context with .req and .res, instead of two separate arguments.

Installation

With npm do:

$ npm install predirect

License

(MIT)

Keywords

http,

FAQs

Package last updated on 20 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts