
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A Node.js library for creating, configuring, and managing an RSS feed for dzen.ru
A Node.js library for creating, configuring, and managing an RSS feed for Dzen in accordance with the official documentation.
An XML builder for node.js.
To install the library, use npm or yarn:
npm install dzen-rss
or
yarn add dzen-rss
Here's a basic example of how to use the library to create an RSS feed:
import createRssFeed from 'dzen-rss';
const options = {
title: 'My RSS Feed',
link: 'https://example.com',
language: 'en',
};
const articles = [
{
title: 'Article 1',
link: 'https://example.com/article1',
guid: '12345',
pubDate: '2023-10-01', // or new Date('2023-10-01')
category: ['native-draft', 'noindex', 'comment-all'],
content_encoded: 'This is the content of article 1.',
},
];
const rssFeed = createRssFeed(options, articles);
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss">
<channel>
<title>My RSS Feed</title>
<link>https://example.com</link>
<language>en</language>
<item>
<title>Article 1</title>
<link>https://example.com/article1</link>
<guid>12345</guid>
<pubDate>2023-10-01</pubDate>
<category>native-draft</category>
<category>noindex</category>
<category>comment-all</category>
<content:encoded>This is the content of article 1.</content:encoded>
</item>
</channel>
</rss>
Contributions are welcome! Please follow the Contributing Guidelines.
This project is licensed under the MIT License.
FAQs
A Node.js library for creating, configuring, and managing an RSS feed for dzen.ru
We found that dzen-rss demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.