Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gettoset/rss-friend
A simple Node.js service that provides common functionalities to enhances the RSS workflow.
https://github.com/gettoset/rss-friend
Last synced: 8 days ago
JSON representation
A simple Node.js service that provides common functionalities to enhances the RSS workflow.
- Host: GitHub
- URL: https://github.com/gettoset/rss-friend
- Owner: GetToSet
- License: mit
- Created: 2023-12-30T06:10:29.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T07:45:04.000Z (5 months ago)
- Last Synced: 2024-06-29T08:47:01.854Z (5 months ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rss-friend
A simple Node.js service that provides common functionalities to enhances the RSS workflow.
## Functionalities
Currently only one functionality has been implemented:
### JSON Feed to RSS
#### GET `/json-feed-to-rss`
Fetch from the URL that provides a JSON feed and convert it to an RSS format.
**URL Parameters**
| Name | Required | Type | Description |
| ----: | :------: | :----: | ---------------------------------- |
| `url` | required | string | The URL to fetch for the JSON feed |**Response**
The corresponding RSS feed in XML if success.
---
### Errors
Responses confirm to [standard HTTP response status codes](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status), additional information is provided in the JSON body like the following:
```json
{ "status": 400, "reason": "url empty or not found" }
```## License
MIT