feedbin-nodejs
v0.0.2
Published
A nodejs wrapper for feedbin
Downloads
2
Readme
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!