https://github.com/klarkc/ssb-bot-feed
Scuttlebutt bot that read RSS feeds and post updates automatically
https://github.com/klarkc/ssb-bot-feed
atom bot rss scuttlebutt ssb ssb-client ssb-server
Last synced: 5 months ago
JSON representation
Scuttlebutt bot that read RSS feeds and post updates automatically
- Host: GitHub
- URL: https://github.com/klarkc/ssb-bot-feed
- Owner: klarkc
- License: mit
- Created: 2019-03-19T10:24:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-30T15:24:32.000Z (over 1 year ago)
- Last Synced: 2024-12-30T16:26:40.841Z (over 1 year ago)
- Topics: atom, bot, rss, scuttlebutt, ssb, ssb-client, ssb-server
- Language: JavaScript
- Homepage:
- Size: 9.6 MB
- Stars: 24
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# ssb-bot-feed
[](https://handle.me/walkerleite)
Scuttlebutt bot that read RSS feeds and post updates automatically
## Usage
Download and run [ssb-server](https://github.com/ssbc/ssb-server)
`npm install -g ssb-bot-feed`
Syntax:
`ssb-bot-feed [feed1] [feed2] [feedN]`
Example:
`ssb-bot-feed http://www.nintendolife.com/feeds/news`
By default It connects on `localhost:8008` ([ssb-server](https://github.com/ssbc/ssb-server)) and uses `~/.ssb` settings.
Full documentation: `ssb-bot-feed --help`.
## Docker
The docker image assumes that you have a [ssb-server](https://github.com/ssbc/ssb-server) listening on localhost:8008
`~/.ssb` is the path to `.ssb` folder where bot will load secrets and manifest
```bash
docker run -d --name ssb-bot-feed \
--network="host" \
--restart=always \
-v ~/.ssb:/root/.ssb \
klarkc/ssb-bot-feed -h localhost -p 8008 http://www.nintendolife.com/feeds/news
```
## Alternatives
- [marine-master/ssb-bot-feed](https://www.npmjs.com/package/@marine-master/ssb-bot-feed) more robust fork with yaml configuration and more features (unmaintained)