
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.