nuxt-redirect
v1.0.3
Published
NuxtJs module to dynamically redirect initial requests using a syntax similar to nuxt paging
Downloads
215
Maintainers
Readme
Nuxt Redirect ⤳ Nuxt dynamic pages syntax for quick development!
Nuxt module to dynamically redirect initial requests
Features
Redirecting URLs is an often discussed topic, especially when it comes to SEO. We have created a package that uses a similar syntax as dynamic paging in NuxtJs to perform redirect.
Setup
- Add the
nuxt-redirect
dependency withyarn
ornpm
to your project - Add
nuxt-redirect
to themodules
section ofnuxt.config.js
: - Configure it:
{
modules: [
['nuxt-redirect', {
// Redirect option here
}]
]
}
Using top level options
{
modules: [
'nuxt-redirect'
],
redirect: [
// Redirect options here
]
}
Options
rules
- Default:
[]
Rules of your redirects an array of object { from: string, to: string | function}
onDecode
- Default:
(req, res, next) => decodeURI(req.url)
You can set decode.
onDecodeError
- Default:
(error, req, res, next) => next(error)
You can set callback when there is an error in the decode.
statusCode
- Default:
302
You can set the default statusCode which gets used when no statusCode is defined on the rule itself.
Usage
Simply add the links you want to redirect as objects to the module option array:
redirect: [
{ from: '/oldurl', to: '/newurl' }
]
You can set up a custom status code as well. By default, it's 302!
redirect: [
{ from: '/myoldurl', to: '/mynewurl', statusCode: 301 }
]
We can also build dynamic redirects using a similar syntax as nuxt dynamic paging
redirect: [
{ from: '/account_holders/_user_id', to: '/users/_user_id/profile' },
{ from: '/account_holders/_user_id/_post_id', to: '/users/_user_id/posts/_post_id' }
]
Furthermore you can use a function to create your to
url as well:
The from
rule and the req
of the middleware will be provided as arguments.
The function can also be async!
redirect: [
{
from: '/someUrlHere/_user_id',
to: (from, req) => {
const to = someFunction(from,req)
return to
}
}
]
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)
}
Now, if you want to customize your redirects, how your decode is done or when there is some error in the decode, you can also:
redirect: {
rules: [
{ from: '^/myoldurl', to: '/mynewurl' }
],
onDecode: (req, res, next) => decodeURI(req.url),
onDecodeError: (error, req, res, next) => next(error)
}
ATTENTION: The factory function must return an array with redirect objects (as seen above).
Gotchas
The redirect module will not work in combination with nuxt generate
.
Redirects are realized through a server middleware, which can only react when there is a server running.
License
Copyright (c) Aryan Gupta https://www.linkedin.com/in/aryan-gupta-3a7033146/