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.
Simple utility to generate sitemaps
npm i sitemapy
import {createSitemap} from "sitemapy"
const siteRoot = "https://github.com"
let pages = [
{
url: "/about", //all optional except url
priority: 1,
changefreq: "daily",
lastmod: "10-04-22"
}
]
const sitemap = createSitemap({pages, siteRoot}) //returns string of sitemap XML
import {createSitemap} from "sitemapy"
import type {SitemapElement, SitemapConfig} from "sitemapy"
const siteRoot = "https://github.com"
let pages: Array<SitemapElement> = [
{
url: "/about", //all optional except url
priority: 1,
changefreq: "daily",
lastmod: "10-04-22"
}
]
const config: SitemapConfig = {pages, siteRoot}
const sitemap = createSitemap(config) //returns string of sitemap XML
With express
import axios from "axios"
import {createSitemap} from "sitemapy"
app.get("/sitemap.xml", async (req, res) => {
const siteRoot = "https://github.com"
const {data} = await axios.get("/api/sitemapData")
const sitemap = createSitemap({pages: data, siteRoot})
res.setHeader('Content-Type', 'application/xml')
res.send(sitemap)
})
In versions prior to 2.4.0, urls would already have the starting slash prefixed. Now that is left for the user to define themselves, it makes more sense.
Prior to 2.4.0
const url = "about";
Would result in "https://example.com/about"
After and including version 2.4.0
const url = "/about";
Would result in "https://example.com/about"
FAQs
Simple utility to generate sitemaps in xml, with zero dependencies
The npm package sitemapy receives a total of 7 weekly downloads. As such, sitemapy popularity was classified as not popular.
We found that sitemapy 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.