graphql-rss-parser

3.0.4 • Public • Published

graphql-rss-parser npm version

A graphql microservice that parses rss feeds and returns a JSON representation of the given feed. It uses different parses installed from npm. When a parser fail it will try the next following this order: feedparser, rss-parser, feedme, rss-to-json. To specify a specific parser see example queries below.

Installation

npm i -g graphql-rss-parser

Usage

CLI for starting the server

$ graphql-rss-parser --help

  Usage: graphql-rss-parser [options] [command]

  Commands:

    help  Display help

  Options:

    -h, --help          Output usage information
    -H, --host [value]  Host to listen on (defaults to "0.0.0.0")
    -p, --port <n>      Port to listen on (defaults to 3000)
    -D, --sentry-dsn    Sentry DSN. This is used to configure logging with sentry.io
    -v, --version       Output the version number

Sentry integration

The sentry integration can be enabled by passing the -D/--sentry-dsn cli option. It is important to note that errors that happens because errors in parsers or http requests will be filtered out. This is because the goal of this error tracking is to catch errors in the code of the service.

Example queries

feed(url: String, [parser: Parser])

{
  feed(url: "https://rolflekang.com/feed.xml") {
    title
    entries {
      title
      pubDate
      link
    }
  }
}
Specifying the parser.

graphql-rss-parser supports several of the rss parsers on npm. It can be specified with the parser option in a feed query as seen below.

Available parsers:

{
  feed(url: "https://rolflekang.com/feed.xml", parser: FEEDPARSER) {
    entries {
      link
    }
  }
}

findFeed(url: String)

{
  findFeed(url: "https://rolflekang.com") {
    link
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i graphql-rss-parser

Weekly Downloads

1

Version

3.0.4

License

MIT

Unpacked Size

71.1 kB

Total Files

36

Last publish

Collaborators

  • relekang