Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-static-plugin-sitemap
Advanced tools
A React-Static plugin for exporting sitemap information
A React-Static plugin for exporting sitemap information.
In an existing react-static site run:
$ yarn add react-static-plugin-sitemap
Then add the plugin to your static.config.js
:
export default {
plugins: ['react-static-plugin-sitemap'],
}
A config.siteRoot
is required for this plugin to work properly, since sitemap's are required to use full
Each route in your site will createt a <url>
item in the sitemap
By default, the url's <loc>
tag will be set to the prefixed path of each route.
All property/value pairs under a route's sitemap
object will be used as xml tags for that route, eg.
export default {
siteRoot: 'https://hello.com'
}
const routes = [
{
path: '/blog/post/1',
sitemap: {
hreflang: [
{language:'x-default', url: '/blog/post/1'},
{language:'en', url: '/blog/post/1'},
{language:'de-DE', url: '/de/blog/post/1'},
],
lastmod: '10/10/2010',
priority: 0.5,
'image:image': {
'image:loc': `https://raw.githubusercontent.com/react-static/react-static/master/media/react-static-logo-2x.png`,
'image:caption': 'React Static',
},
},
},
{
path: '/blog/draft/2',
sitemap: {
noindex: true // Excludes route from sitemap.xml
},
},
]
Would result in the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://hello.com/blog/post/1/</loc>
<lastmod>10/10/2010</lastmod>
<priority>0.5</priority>
<image:image>
<image:loc>https://raw.githubusercontent.com/react-static/react-static/master/media/react-static-logo-2x.png</image:loc>
<image:caption>React Static</image:caption>
</image:image>
<xhtml:link rel="alternate" hreflang="x-default" href="https://hello.com/blog/post/1/" />
<xhtml:link rel="alternate" hreflang="en" href="https://hello.com/blog/post/1/" />
<xhtml:link rel="alternate" hreflang="de-DE" href="https://hello.com/de/blog/post/1/" />
</url>
</urlset>
export default {
plugins: [
[
'react-static-plugin-sitemap',
{
getAttributes: route => ({
customXmlAttribute: route.customProperty,
}),
// Given a route where route.customProperty === 40,
// This would create a <customXmlAttribute></customXmlAttribute>
// in that routes <url></url> tag
},
],
],
}
7.6.2
react-static-plugin-svgr
, because we have no publish rights.FAQs
A React-Static plugin for exporting sitemap information
We found that react-static-plugin-sitemap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.