Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bst27/feed-webhook

CLI app to monitor RSS/Atom feeds an send webhooks for updates.
https://github.com/bst27/feed-webhook

atom atom-feed feed go golang rss rss-feed webhook

Last synced: 17 days ago
JSON representation

CLI app to monitor RSS/Atom feeds an send webhooks for updates.

Awesome Lists containing this project

README

        

# Build
Execute `script.sh` to build the project. You will receive one file in the `dist` directory:
* **feed-webhook** is the app executable

# TODOs / Ideas
## Tests
Add more tests.
## Docs
Write docs and improve this README
## Formatters
Add functionality to allow to change what is sent to a webhook. JSONPath
could be used to select values from the generated JSON and map them to
a key. Example config:
```json
{
"Formatters": [
{
"ID": "111-222-333-444",
"Type": "jsonPath",
"Output": {
"Value1": "$.Title",
"Value2": "$.Link.Href"
}
}
]
}
```