Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

immutable-app-http-redirect

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immutable-app-http-redirect

Immutable app http redirect

latest
Source
npmnpm
Version
0.1.17
Version published
Maintainers
1
Created
Source

immutable-app-http-redirect

Throws an error object that will be used by the immutable-app framework to generate an http redirect.

Throwing a 302 redirect

const httpRedirect = require('immutable-app-http-redirect')

httpRedirect('/foo/bar')

By default http redirect will do a 302 (temporary) redirect to the given url. If the URL is falsy '/' will be used as the default destination.

Throwing a 301 redirect

httpRedirect('/foo/bar', 301)

To do a 301 (permanent) redirect the 301 code must be passed as the second argument.

Throwing a redirect that sets cookies with response

httpRedirect('/foo', 302, {foo: bar})

The cookies aregument must be an object. Each property will be used as the cookie name and the value will be used to set/clear the cookie.

If the value is false the cookie is cleared.

If the value is a string the cookie will be set with default options.

If the value is an object the value property of the object will be used as the cookie value and the rest of the properties will be used to set the cookie options.

Throwing a redirect that sets http headers with response

httpRedirect('/foo', 302, null, {foo: bar})

The headers argument must be an object. The properties and values will be used to set http headers for the response.

FAQs

Package last updated on 15 Jan 2018

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