Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
gatsby-plugin-client-side-redirect
Advanced tools
Generates client side redirect html files for redirecting on any static file host like s3 or netlify.
Generates client side redirect html files for redirecting on any static file host like s3 or netlify.
It uses window.location.href = url
for redirection
npm install --save gatsby-plugin-client-side-redirect
or
yarn add gatsby-plugin-client-side-redirect
// In your gatsby-config.js
plugins: [
`gatsby-plugin-client-side-redirect` // keep it in last in list
];
You can create redirects using the createRedirect
action.
An example:
createRedirect({ fromPath: '/old-url', toPath: '/new-url', isPermanent: true });
This will generate the following html files:
/old-url/index.html
:<script>window.location.href="/new-url/"</script>
You can use it using an node api provided by gatsby, for an example
Let's take createPages
In you gatsby-node.js file, write following
exports.createPages = ({ graphql, actions }) => {
const {createRedirect} = actions //actions is collection of many actions - https://www.gatsbyjs.org/docs/actions
createRedirect({ fromPath: '/old-url', toPath: '/new-url', isPermanent: true });
}
Above approach is kind of hard code one, let's have a dynamic approach. Below code is just for understanding and use your schema accordingly
exports.createPages = async ({ graphql, actions }) => {
const {createRedirect} = actions
// fetch data from a collection which contains list of urls mapping for redirection
let response = await graphql(`
query redirects {
collectionName {
old_url
new_url
}
}`)
let data = response.data.collectionName
/*
now iterate over data and create redirect for each url
*/
}
FAQs
Generates client side redirect html files for redirecting on any static file host like s3 or netlify.
The npm package gatsby-plugin-client-side-redirect receives a total of 4,290 weekly downloads. As such, gatsby-plugin-client-side-redirect popularity was classified as popular.
We found that gatsby-plugin-client-side-redirect 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.