# blogger-feed-parser

> It parses a blogger feed and decluters the article objects to return a simple array of articles.

Latest version **1.0.17** (published 2016-12-24) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install blogger-feed-parser
pnpm add blogger-feed-parser
yarn add blogger-feed-parser
bun add blogger-feed-parser
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.17 |
| Published | 2016-12-24 |
| First published | 2016-12-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Abhishek Soni |
| Maintainers | abhisheksoni27 |

## Links

- npm: https://www.npmjs.com/package/blogger-feed-parser
- Repository: https://github.com/abhisheksoni27/feed-parser
- Homepage: https://github.com/abhisheksoni27/feed-parser#readme
- Issues: https://github.com/abhisheksoni27/feed-parser/issues
- npm.io page: https://npm.io/package/blogger-feed-parser

## Dependencies (1)

- [feedparser](https://npm.io/package/feedparser.md) ^1.1.5

## Recent versions

- 1.0.17 (latest) — 2016-12-24
- 1.0.9 — 2016-12-24
- 1.0.8 — 2016-12-24
- 1.0.7 — 2016-12-24
- 1.0.6 — 2016-12-24
- 1.0.5 — 2016-12-24
- 1.0.4 — 2016-12-19
- 1.0.3 — 2016-12-19
- 1.0.2 — 2016-12-19
- 1.0.1 — 2016-12-19
- 1.0.0 — 2016-12-19

## README

Blogger Feed Parser
===================

**NOTE: THIS PACKAGE HAS BEEN DEPRECATED. PLEASE USE [feed-parser](https://npmjs.com/package/feed-parser)**

It parses a `Blogger` feed and de-clutters the article `objects` to return a simple `array` of articles.

## Installation

```bash
npm install blogger-feed-parser --save
```

## Usage

```js
var feedBlogger = require('blogger-feed-parser');

/**It exposes a function called feedBlogger.

    @feedURL: The URL of the Blogger feed,
    @callbackFunction: This function will be called with the array of articles after successful execution.

Use a try-catch block to catch for any errors.
*/


try { 
feedBlogger.parseBlog(feedURL, callbackFunction); 
} catch(error) {
console.log(error)
}
```

## Output

It returns an array of articles which have five entries.

```bash
>[{title:"TITLE OF THE POST",description:"DESCRIPTION OF THE POST",
date:"DATE OF PUBLISHING",image:"IMAGE URL FOR THUMBNAIL",
author:"AUTHOR'S NAME"}, ...//Other entries]
```

## Contributing

1. Clone this repository. 

2. Install required modules.

> ```bash
  cd blogger-feed-parser
  npm install
  ```

-> *Start Hacking.*

Issue a Pull request to the development branch.

Github: [Blogger Feed Parser](https://github.com/abhisheksoni27/blogger-feed-parser)

---
_Source: https://npm.io/package/blogger-feed-parser · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
