0.4.29 • Published 1 year ago

reallysimple v0.4.29

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

reallysimple

A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.

Code example

I always like to see the code first...

const reallysimple = require ("reallysimple");
const urlFeed = "https://rss.nytimes.com/services/xml/rss/nyt/World.xml";
reallysimple.readFeed (urlFeed, function (err, theFeed) {
	if (err) {
		console.log (err.message);
		}
	else {
		console.log (JSON.stringify (theFeed, undefined, 4));
		}
	});

This is what you see when you run the code.

Why?

I needed a simple routine to call when I wanted to read a feed.

What formats are supported?

RSS, Atom, and RDF.

Demo

Here's a demo app that runs a feed through reallySimple.

What we build on

Thanks to Dan MacTough for the feedparser package.

Comments, questions?

Post comments and questions in the issues section of this repo.

0.4.29

1 year ago

0.4.28

1 year ago

0.4.27

1 year ago

0.4.26

2 years ago

0.4.25

2 years ago

0.4.24

2 years ago

0.4.23

2 years ago

0.4.20

3 years ago

0.4.21

3 years ago

0.4.22

3 years ago

0.4.19

3 years ago

0.4.18

3 years ago

0.4.10

3 years ago

0.4.9

3 years ago

0.4.8

3 years ago

0.4.17

3 years ago

0.4.15

3 years ago

0.4.16

3 years ago

0.4.13

3 years ago

0.4.14

3 years ago

0.4.11

3 years ago

0.4.12

3 years ago

0.4.7

3 years ago

0.4.6

3 years ago

0.4.5

3 years ago

0.4.4

3 years ago

0.4.3

3 years ago

0.4.2

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago