An open API service indexing awesome lists of open source software.

https://github.com/cakecatz/rss-parse-promise

RSS feed parser
https://github.com/cakecatz/rss-parse-promise

Last synced: about 2 months ago
JSON representation

RSS feed parser

Awesome Lists containing this project

README

        

# RSS Parser Promise

[![Circle CI](https://circleci.com/gh/cakecatz/rss-parse-promise.svg?style=svg)](https://circleci.com/gh/cakecatz/rss-parse-promise)

> RSS feed parser

## Usage
```
var rssParser = require('rss-parse-promise');

rssParser('http://www.echojs.com/rss')
.then((value) => {
# write your code here
})
.catch((error) => {
console.err(error);
})
```

## License
[MIT License](https://tldrlegal.com/license/mit-license)