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
- Host: GitHub
- URL: https://github.com/1999/livejournal-feeds
- Owner: 1999
- License: mit
- Created: 2013-04-06T15:22:43.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T07:46:40.000Z (over 7 years ago)
- Last Synced: 2025-04-27T08:23:15.294Z (25 days ago)
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
```