https://github.com/kindlyfire/mdrss-ts
RSS feed generator for Mangadex
https://github.com/kindlyfire/mdrss-ts
bun manga mangadex rss
Last synced: about 1 month ago
JSON representation
RSS feed generator for Mangadex
- Host: GitHub
- URL: https://github.com/kindlyfire/mdrss-ts
- Owner: kindlyfire
- Created: 2021-08-27T08:31:11.000Z (almost 5 years ago)
- Default Branch: trunk
- Last Pushed: 2025-05-10T11:55:11.000Z (about 1 year ago)
- Last Synced: 2025-05-10T12:35:17.597Z (about 1 year ago)
- Topics: bun, manga, mangadex, rss
- Language: TypeScript
- Homepage: https://mdrss.tijlvdb.me/
- Size: 253 KB
- Stars: 48
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MDRSS-TS
Public feed generator for [MangaDex](https://mangadex.org/).
- Outputs RSS 2.0
- Supports filtering by manga, scanlation group, uploader, language, original
language, tags (inclusive and exclusive)
- Supports filtering by a combination of any of the above
- Will never hit the MangaDex rate limit
## Creating a feed
There is a [generator](https://mdrss.tijlvdb.me/) available that can generate
feed URLs for you.
## Development
This project requires [Bun](https://bun.sh/).
```s
bun i
# Configure .env in `backend/`, then
bun migrate
# Development (watchers)
bun bdev # back-end
bun fdev # front-end
# Production
bun fbuild # build front-end
NODE_ENV=production bun start # start back-end
```