Go to file
2021-07-22 14:24:40 +02:00
src fix typos and minor improvements 2021-07-12 15:49:31 +02:00
tests Added editConfig Function 2021-07-12 13:49:02 +02:00
.eslintrc.json first commit 2021-03-12 13:02:02 +01:00
.gitignore add prepack script 2021-07-12 16:46:42 +02:00
.prettierrc.json first commit 2021-03-12 13:02:02 +01:00
package-lock.json add postinstall script to build automatically using tsc 2021-07-12 15:54:12 +02:00
package.json bubu 2021-07-22 14:24:40 +02:00
README.md Added declaration and a begin of Readme 2021-06-25 18:20:48 +02:00
tsconfig.base.json issue 4 and 5 2021-07-03 12:47:06 +02:00
tsconfig.json issue 4 and 5 2021-07-03 12:47:06 +02:00

Listener-rss-agregator


Brief

This is an agregator of rss's listener (more information about it here : ).

Usage

The basic usage is to use many listener-rss with a unique class.

import { ManageListener } from 'Listener-rss-agregator';


const path = '/my/data/directorie/bd.sqlite'
const myManager = new ManageListener(path);

await ml.load(); // he is reading the database

const listenerConfig =
	{
    	"address": "fake.rss.service.1",
    	"timeloop": 10
  	};

ml.registerListener(listenerConfig);

ml.on('update', (obj) => {
	doSomethingWithNewEntries(obj);
	ml.save();
})

ml.startAll();

//...

ml.stopAll();
ml.save();

Documentation

Why SQLITE

This project use SQLITE to store the listener-rss configs and keep an correct historic of this. Sqlite was choice for her difficulty to access and read it. The database dont need to be modify by the user.

Constructor

The constructor need to have a file to store the sqlite data. If the file does not exist he will be create, but the path must be valid.

Function

load()

An async method who would read the sqlite file and create the corresponding objects

save()

An method who would store the actual configuration and erase the older

registerListener(listenerConfig)

He's create an new listener-rss with the corresponding config data. (More information about the listenerConfig here : )

startAll()

Start all the listener who are actually register

stopAll()

Start all the listener who are actually register

Events

Like listener-rss, listener-rss-agregator implement EventEmitter.
The event who's used is named update. He's called for each new entries detection per listener. he's giving back an object who contains all the new entries