An open API service indexing awesome lists of open source software.

https://github.com/1999/livejournal-feeds

Build RSS channel w/ your Livejournal friends' private posts
https://github.com/1999/livejournal-feeds

Last synced: 8 days ago
JSON representation

Build RSS channel w/ your Livejournal friends' private posts

Awesome Lists containing this project

README

        

# What is it?
A tool for fetching LiveJournal RSS feeds including private posts

# Installation
```
npm install livejournal-feeds
```

# API
```javascript
var ljFeeds = require('livejournal-feeds');
var FeedsClient = new ljFeeds(YOUR_USERNAME, YOUR_PASSWORD);

// get original OPML with feeds
FeedsClient.collectOPML(function (err, xmlData) {
if (err)
throw new Error(err);

// do smth with xmlData
});

// get your friend RSS
FeedsClient.fetch(LOVELY_FRIEND_USERNAME, function (err, xmlData) {
if (err)
throw new Error(err);

// do smth with xmlData
});

// you can also pass community name as well as username. Enjoy!
```