npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

zeit-online-serie-rss-feed

v1.0.0

Published

Generate an RSS feed for ZEIT Online Serien articles.

Downloads

15

Readme

zeit-online-serie-rss-feed

Deprecated. Use https://newsfeed.zeit.de/serie/name-of-the-series.

Generate an RSS feed for ZEIT Online Serien articles.

npm version build status ISC-licensed chat on gitter

Installing

npm install zeit-online-serie-rss-feed

Usage

Identify the slug from the URL of the Serie you want to get an RSS feed from. Es an example, the Jung und Gott Serie has the slug jung-und-gott.

const serie = 'jung-und-gott'
const generateRSSFeed = require('zeit-online-serie-rss-feed')

generateRSSFeed(serie)
.then(console.log)
.catch(console.error)
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Jung und Gott]]></title><description><![CDATA[Wir reden über alles, außer…

You can also get the raw data of the feed:

const generateRawFeed = require('zeit-online-serie-rss-feed/raw')

generateRawFeed(serie)
.then(console.log)
.catch(console.error)
{
	meta: {
		title: 'Jung und Gott',
		description: 'Wir reden über alles, außer unseren Glauben. Das wollen wir ändern. Woran glauben junge Menschen heute? An Gott, Allah, eine höhere Macht? Oder gar niemanden? Was macht das mit uns? Wir erzählen Geschichte vom glauben, zweifeln, hoffen und verzweifeln.',
		site_url: 'http://www.zeit.de/serie/jung-und-gott',
		image_url: 'http://xml.zeit.de/campus/2017-08/jung-und-gott-serienheader/',
		language: 'de',
		generator: 'https://github.com/derhuerst/zeit-online-serie-rss-feed'
	},
	items: [ {
		guid: '19e2faf1fca3e04f8146ac7e722377d89f1bc8aa16c893b5b5bbc89d3f7fdef2',
		url: 'http://xml.zeit.de/campus/2017-11/atheismus-ostdeutschland-ddr-identifikation-jung-und-gott',
		title: 'Gottlos im Osten',
		description: 'Als ich geboren wurde, war die DDR gerade gestorben. Trotzdem tat ich alles dafür, nicht als Ostdeutscher zu gelten. Nur auf meinen Atheismus bin ich stolz. Warum?',
		author: 'Marcel Laskus',
		enclosure: {
			url: 'http://img.zeit.de/campus/2017-11/atheismus-ostdeutschland-ddr-identifikation-jung-und-gott-ddr-identifikationx/wide__220x124__desktop'
		}
	}, /* … */ ]
}

Contributing

If you have a question or have difficulties using zeit-online-serie-rss-feed, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to the issues page.