Driven by the lack of comprehensive RSS bots available, I have decided to try my hand at creating one of my own. Designed with as much customization as possible for both users and bot hosters, while also (or should be) easy to understand.
All documentation can be found at https://github.com/synzen/Discord.RSS/wiki.
Looking for a non-Discord version of this bot? See https://github.com/synzen/feedtracker
Don't want to bother hosting your own instance? Use the publicly hosted one!
https://discordapp.com/oauth2/authorize?client_id=268478587651358721&scope=bot&permissions=19456
See https://github.com/synzen/Discord.RSS/wiki/Setup
npm install discord.rss
const DiscordRSS = require('discord.rss')
// Optional config overrides
const config = {
database: {
uri: './sources'
}
}
const drss = new DiscordRSS.ClientManager(config)
drss.login('token')
For best performance, use a mongodb database.uri instead of a directory.
For instructions on how to get the web interface working, see https://github.com/synzen/Discord.RSS/tree/dev/src/web
You can deploy the bot in a simple way to Heroku using the button below. Click here for detailed instructions.
If you want to deploy manually you can follow this guide.
Read the contribution guidelines. All the latest updates are commited to the dev branch.
Run npm test
To add or contribute to menu translations (locales):
- If the locale JSON doesn't exist in src/locales, create one by running
node scripts/locales/create.js
- Open the relevant locale file in src/locales
- Add your translations (use the en-US.json locale as reference)
- Verify your file(s) by running
node scripts/locales/verify.js
and make appropriate fixes - Make a pull request for your changes!