A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/syntax-tree/xast-util-feed below:

syntax-tree/xast-util-feed: xast utility to build feeds (rss, atom)

xast utility to build (web) feeds (RSS, Atom).

This package generates RSS or Atom feeds from data.

This package helps you add feeds to your site. It focusses on a small set of widely used and supported parts of feeds. It has a few good options instead of overwhelming with hundreds of things to configure. If you do need more things, well: this utility gives you a syntax tree, which you can change.

It’s good to use this package to build several feeds and to only include recent posts (often 15-20 items are included in a channel). You should make a channel for all your posts; when relevant, separate channels per language as well; and potentially, channels per post type (such as separate ones for blog posts, notes, and images).

Just using either RSS or Atom is probably fine: no need to do both.

This package is ESM only. In Node.js (version 16+), install with npm:

npm install xast-util-feed

In Deno with esm.sh:

import {atom, rss} from 'https://esm.sh/xast-util-feed@2'

In browsers with esm.sh:

<script type="module">
  import {atom, rss} from 'https://esm.sh/xast-util-feed@2?bundle'
</script>
import {atom, rss} from 'xast-util-feed'
import {toXml} from 'xast-util-to-xml'

const channel = {
  title: 'NYT > Top Stories',
  url: 'https://www.nytimes.com',
  feedUrl: 'https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml',
  lang: 'en',
  author: 'The New York Times Company'
}

const data = [
  {
    title: 'Senate Balances Impeachment Trial With an Incoming President',
    url:
      'https://www.nytimes.com/2021/01/14/us/politics/impeachment-senate-trial-trump.html',
    descriptionHtml: '<p>Senate leaders etc etc etc.</p>',
    author: 'Nicholas Fandos and Catie Edmondson',
    published: 'Fri, 15 Jan 2021 01:18:49 +0000',
    tags: ['Senate', 'Murkowski, Lisa', 'Trump, Donald J']
  }
]

console.log(toXml(rss(channel, data)))
console.log(toXml(atom(channel, data)))

Yields (pretty printed):

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>NYT > Top Stories</title>
    <description></description>
    <link>https://www.nytimes.com/</link>
    <lastBuildDate>Sun, 17 Jan 2021 09:00:54 GMT</lastBuildDate>
    <dc:date>2021-01-17T09:00:54.781Z</dc:date>
    <atom:link href="https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" rel="self" type="application/rss+xml"></atom:link>
    <language>en</language>
    <dc:language>en</dc:language>
    <copyright>© 2021 The New York Times Company</copyright>
    <dc:rights>© 2021 The New York Times Company</dc:rights>
    <item>
      <title>Senate Balances Impeachment Trial With an Incoming President</title>
      <dc:creator>Nicholas Fandos and Catie Edmondson</dc:creator>
      <link>https://www.nytimes.com/2021/01/14/us/politics/impeachment-senate-trial-trump.html</link>
      <guid isPermaLink="false">https://www.nytimes.com/2021/01/14/us/politics/impeachment-senate-trial-trump.html</guid>
      <pubDate>Fri, 15 Jan 2021 01:18:49 GMT</pubDate>
      <dc:date>2021-01-15T01:18:49.000Z</dc:date>
      <category>Senate</category>
      <category>Murkowski, Lisa</category>
      <category>Trump, Donald J</category>
      <description>&#x3C;p>Senate leaders etc etc etc.&#x3C;/p></description>
    </item>
  </channel>
</rss>
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>NYT > Top Stories</title>
  <subtitle></subtitle>
  <link>https://www.nytimes.com/</link>
  <id>https://www.nytimes.com/</id>
  <updated>Sun, 17 Jan 2021 09:00:54 GMT</updated>
  <link href="https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" rel="self" type="application/atom+xml"></link>
  <rights>© 2021 The New York Times Company</rights>
  <author>
    <name>The New York Times Company</name>
  </author>
  <category term="Senate"></category>
  <category term="Murkowski, Lisa"></category>
  <category term="Trump, Donald J"></category>
  <entry>
    <title>Senate Balances Impeachment Trial With an Incoming President</title>
    <author>
      <name>Nicholas Fandos and Catie Edmondson</name>
    </author>
    <link href="https://www.nytimes.com/2021/01/14/us/politics/impeachment-senate-trial-trump.html"></link>
    <id>https://www.nytimes.com/2021/01/14/us/politics/impeachment-senate-trial-trump.html</id>
    <published>2021-01-15T01:18:49.000Z</published>
    <content type="html">&#x3C;p>Senate leaders etc etc etc.&#x3C;/p></content>
  </entry>
</feed>

This package exports the identifiers atom and rss. There is no default export.

Build an Atom feed.

Atom feed (Root).

Build an RSS feed.

RSS feed (Root).

Author object (TypeScript type).

Name (string, required, example: 'Acme, Inc.' or 'Jane Doe').

Email address (string, optional, ,example: john@example.org)

URL to author (string, optional, example: 'https://example.org/john').

url is used in atom, not in rss.

Data on the feed (the group of items) (TypeScript type).

Title of the channel (string, required, example: Zimbabwe | The Guardian).

Full URL to the site (string, required, example: 'https://www.theguardian.com/world/zimbabwe').

Full URL to this channel (string?, example: 'https://www.adweek.com/feed/').

Make sure to pass different ones to rss and atom when you build both!

You should define this.

Short description of the channel (string?, example: Album Reviews).

You should define this.

BCP 47 language tag representing the language of the whole channel (string?, example: 'fr-BE').

You should define this.

Optional author of the whole channel (string or Author).

Either string, in which case it’s as passing {name: string}. Or an author object.

Categories of the channel (Array<string>?, example: ['JavaScript', 'React']).

Media (TypeScript type).

Full URL to the resource (string, required, example: 'http://dallas.example.com/joebob_050689.mp3').

Resource size in bytes (number, required, example: 24986239).

Mime type of the resource (string, required, example: 'audio/mpeg').

Data on a single item (TypeScript type).

Title of the item (string?, example: 'Playboi Carti: Whole Lotta Red').

Either title, description, or descriptionHtml must be set.

Either the whole post or an excerpt of it (string?, example: 'Lorem').

Should be plain text. descriptionHtml is preferred over plain text description.

Either title, description, or descriptionHtml must be set.

Either the whole post or an excerpt of it (string?, example: '<p>Lorem</p>').

Should be serialized HTML. descriptionHtml is preferred over plain text description.

Either title, description, or descriptionHtml must be set.

Entry version of channel.author.

You should define this.

For atom, it is required to either set channel.author or set author on all entries.

Full URL of this entry on the site (string?, example: 'https://pitchfork.com/reviews/albums/roberta-flack-first-take').

When the entry was first published (Date or value for new Date(x), optional).

When the entry was last modified (Date or value for new Date(x), optional).

Categories of the entry (Array<string>?, example: ['laravel', 'debugging']).

Attached media (Enclosure?).

This package is fully typed with TypeScript. It exports the additional types Author, Channel, Enclosure, and Entry.

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, xast-util-feed@^2, compatible with Node.js 16.

XML can be a dangerous language: don’t trust user-provided data.

See contributing.md in syntax-tree/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

MIT © Titus Wormer


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4