🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

redirect-now

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

redirect-now

Middleware to redirect aliased Now deployments

latest
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

redirect-now

Middleware especially for đťš« Now deployments that redirects all requests to a configured hostname.

It respects the Now deployment URLs though. So when you access a non-aliased deployment URL directly (e.g. https://redirect-now-otytioldup.now.sh), incoming requests will not be redirected.

Install

$ npm install redirect-now

Usage

The middleware can be used as all other Connect and Express middleware libraries out there;

const express = require('express')
const redirect = require('redirect-now')

const app = express()
// Redirect all incoming requests to `www.example.com`.
app.use(redirect('www.example.com'))

API

redirect(hostname, [options])

Returns a middleware function that is compatible with Connect's API.

hostname

Type: string RegExp

The hostname to redirect to, or a RegExp to test the hostname against.

options

Type: Object

target

Type: string

By default, the redirect target is the passed hostname.

enabled

Type: boolean

By default, the middleware is enabled when running when NODE_ENV=production.

License

MIT © Robin van der Vleuten

FAQs

Package last updated on 28 Jun 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