0.2.0 • Published 8 months ago

better-podcast-parser v0.2.0

Weekly downloads
2
License
MIT
Repository
-
Last release
8 months ago

Better Podcast Parser

A fully-featured podcast parser. Built for Podrain but can be used in Node or the browser.

Repo

https://github.com/podrain/better-podcast-parser

Features

There are a couple of features that help this library stand out:

  • Fetch a feed by URL, or just parse XML string directly
  • Supports paged feeds as per RFC 5005

Installation

## NPM
npm install --save better-podcast-parser

# Yarn
yarn add better-podcast-parser

Usage

The functions used return Promises. You can fetch a feed by URL or parse an XML string directly.

Options

getAllPages

Whether to recursively fetch all pages in a paginated feed. Defaults to false.

proxyURL

If you are pulling a feed from a web browser, you will likely need a proxy server to avoid CORS when fetching feeds. Not likely needed for server-side fetching with Node. Of course, the proxy URL will be prepended to the feed URL. Defaults to an empty string.

import feedParser from 'better-podcast-parser'

// Options
let options = {
    getAllPages: true, 
    proxyURL: 'https://cors-anywhere.herokuapp.com/'
}

// Parsing a feed at a given URL
feedParser.parseURL('https://changelog.com/gotime/feed', options).then(jsonResult => {
    // jsonResult is the JSON payload
})

// Parsing a feed from an XML string
feedParser.parseFeed(xmlString, options).then(jsonResult => {
     // jsonResult is the JSON payload
})

Todo

  • Add some kind of error checking if a feed string or URL is bad
0.2.0

8 months ago

0.1.17

2 years ago

0.1.16

3 years ago

0.1.15

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.12

3 years ago

0.1.11

3 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago