feedly2opml
v0.1.0-alpha.3
Published
A NPM module that exports a Feedly account to OPML 2.0.
Downloads
13
Maintainers
Readme
feedly2opml
A NPM module that exports a Feedly account to OPML 2.0.
As opposed as Feedly OPML export tool, it allows to save tags.
Command-line interface
Installation
npm install -g feedly2opml
Usage
feedly2opml -t <Feedly authentication token>
# or use FEEDLY_AUTH_TOKEN env variable
Programmatic API
Package installation
npm install --save feedly2opml
Usage (ES5)
var feedlyToOpml = require('feedly2opml').default;
var xml = feedlyToOpml(token);
Usage (ES2015+)
import feedlyToOpml from 'feedly2opml';
const xml = feedly2Opml(token);