
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
`nuxt-feed` is a layer that is added on top of Nuxt 3 to generate a `feed.xml` file for your content.
nuxt-feed is a layer that is added on top of Nuxt 3 to generate a feed.xml file for your content.
Make sure to install the npm package using npm or yarn
yarn add nuxt-feed
Then add the dependency to your extends in nuxt.config:
defineNuxtConfig({
extends: [
'nuxt-feed'
]
})
Now, its time to provide the required configuration for the feed
under the runtimeConfig key in nuxt.config:
defineNuxtConfig({
extends: [
'nuxt-feed'
],
runtimeConfig: {
public: {
feed: {
id: 'rss', // optional, default: 'rss'
title: 'Your site title',
siteUrl: process.env.NUXT_PUBLIC_SITE_URL || 'https://site.com',
description: 'welcome to my cool site',
image: '' // optional,
favicon '' // optional,
language: 'ar-EG', // prefer more explicit language codes like `en-AU` over `en`
author: { // optional
name: 'Islam Shehata',
email: 'myemail@company.com'
},
where: {} // where object for the serverQueryContent() method. default { published: true }
sort: {} // sort object for the serverQueryContent() method. default: { date: -1 }
pathStartsWith: null // optional filter to filter out docs by path before generating the feed, e.g: '/blog'
}
}
}
})
you are done! you should be able to access your feed at http://localhost:3000/feed.xml
in production build, this will be prerendered.
FAQs
`nuxt-feed` is a layer that is added on top of Nuxt 3 to generate a `feed.xml` file for your content.
We found that nuxt-feed 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 supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.