feedbin-nodejs

0.0.2 • Public • Published

Feedbin Nodejs wrapper

This is a simple unofficial wrapper for Feedbin RSS reader.

How to use

Easy! Pass credentials to constructor and optionally a host (skip it for using the official one).

Feedbin-nodejs methods for interacting with Feedbin will always return a Promise.

See API docs (wip) for all available methods.

const Feedbin = require('feedbin-nodejs');
 
const feedbin = new Feedbin('username', 'password', 'https://optional.host.com/');
 
// feedbin is ready to use now
feedbin.subscriptions.getAll()
    .then(subscriptions => {
        console.log(subscriptions);
    });
 
feedbin.entries.getUnread()
    .then(unread => {
        console.log(unread);
    });

Roadmap

  • Add documentation
  • Add tests

Feel free to contribute!

Readme

Keywords

none

Package Sidebar

Install

npm i feedbin-nodejs

Weekly Downloads

0

Version

0.0.2

License

MIT

Last publish

Collaborators

  • mariosant