
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
@nuxtjs/redirect-module
Advanced tools
[](https://npmjs.com/package/@nuxtjs/redirect-module) [](https://
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!
@nuxtjs/redirect-module
dependency using yarn or npm to your project@nuxtjs/redirect-module
to modules
section of nuxt.config.js
{
modules: [
['@nuxtjs/redirect-module', [ /* Redirect option here */]],
]
}
{
modules: [
'@nuxtjs/redirect-module'
],
redirect: [
// Redirect options here
]
}
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
]
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).
yarn install
or npm install
npm run dev
Copyright (c) Alexander Lichter npm@lichter.io
FAQs
Nuxt module to dynamically redirect initial requests
The npm package @nuxtjs/redirect-module receives a total of 4,950 weekly downloads. As such, @nuxtjs/redirect-module popularity was classified as popular.
We found that @nuxtjs/redirect-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.