Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bst27/feed-webhook
- Owner: bst27
- License: mit
- Created: 2020-06-15T19:28:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T19:21:12.000Z (over 4 years ago)
- Last Synced: 2024-12-23T02:06:45.700Z (19 days ago)
- Topics: atom, atom-feed, feed, go, golang, rss, rss-feed, webhook
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
]
}
```