Socket
Book a DemoInstallSign in
Socket

@nuxtjs/redirect-module

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtjs/redirect-module

[![npm (scoped with tag)](https://img.shields.io/npm/v/@nuxtjs/redirect-module/latest.svg?style=flat-square)](https://npmjs.com/package/@nuxtjs/redirect-module) [![npm](https://img.shields.io/npm/dt/@nuxtjs/redirect-module.svg?style=flat-square)](https://

Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
6K
17.82%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • Add @nuxtjs/redirect-module dependency using yarn or npm to your project
  • Add @nuxtjs/redirect-module to modules section of nuxt.config.js
  • Configure it:

Inline options

{
  modules: [
    ['@nuxtjs/redirect-module', [ /* Redirect option here */]],
 ]
}

Dedicated option array

{
  modules: [
    '@nuxtjs/redirect-module'
 ],
 redirect: [
  // Redirect options here
 ]
}

Usage

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

redirect: [
  { from: '^/myoldurl', to: '/mynewurl' }
 ]

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

redirect: [
  { 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.

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

Furthermoer you can use a function to create your to url as well :+1: The from rule and the req of the middleware will be provided as arguments. The function can also be async!

redirect: [
  {
    from: '^/someUrlHere/(.*)$',
    to: (from, req) => {
      const param = req.url.match(/functionAsync\/(.*)$/)[1]
      return `/posts/${param}`
    }
  }
]

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

redirect: async () => {
  const someThings = await axios.get("/myApi") // It'll wait!
  return someThings.map(coolTransformFunction)
}

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

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development server using npm run dev

License

MIT License

Copyright (c) Alexander Lichter npm@lichter.io

Keywords

nuxtjs

FAQs

Package last updated on 24 Nov 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