nuxt-community/redirect-module

Name: redirect-module

Owner: Nuxt Community

Description: No more cumbersome redirects!

Created: 2018-04-17 21:23:02.0

Updated: 2018-05-17 16:19:50.0

Pushed: 2018-04-18 07:29:46.0

Homepage: null

Size: 213

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Redirect Module ? No more cumbersome redirects!

npm (scoped with tag) npm CircleCI Codecov Dependencies js-standard-style

? Release Notes

Features

Redirecting URLs is an often discussed topic, especially when it comes to SEO. Previously it was hard to create a “real” redirect without performance loss or incorrect handling. But this time is over!

With the Redirect Module setting up redirects will become easier than ever before!

Setup

dules: [
'@nuxtjs/redirect-module'

irect: [
 Module options


Usage

Simply add the links you want to redirect as objects to the module option array:

rect: [
from: '^/myoldurl', to: '/mynewurl' }

You can set up a custom status code as well. By default, it's 302!

rect: [
from: '^/myoldurl', to: '/mynewurl', statusCode: 301 }

As you may have already noticed, we are leveraging the benefits of Regular Expressions. Hence, you can fully customize your redirects.

rect: [
from: '^/myoldurl/(.*)$', to: '/comeallhere', } // Many urls to one
from: '^/anotherold/(.*)$', to: '/new/$1', } // One to one mapping

And if you really need more power… okay! You can also use a factory function to generate your redirects:

rect: async () => {
nst someThings = await axios.get("/myApi") // It'll wait!
turn someThings.map(coolTransformFunction)

ATTENTION: The factory function must return an array with redirect objects (as seen above).

Development
License

MIT License

Copyright (c) Alexander Lichter npm@lichter.io


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.