0.0.2 • Published 7 years ago

feedbin-nodejs v0.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

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!

0.0.2

7 years ago

0.0.1

7 years ago