docs: add general details to proxy documentation
This commit is contained in:
parent
912dde4e1c
commit
55e88e6ebf
1 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,15 @@
|
|||
/*
|
||||
* Fetches and parses RSS feeds.
|
||||
*
|
||||
* This handles the fetching, XML parsing and formatting of
|
||||
* RSS feed data so that the frontent clients do not have to.
|
||||
*
|
||||
* This is operating on a "by-feed" basis such that each
|
||||
* run only processes one feed, and the clients are expected
|
||||
* to make multiple requests if they have a list of feeds to
|
||||
* follow.
|
||||
*/
|
||||
|
||||
import axios from 'axios'
|
||||
import { parseFeed } from 'htmlparser2'
|
||||
|
||||
|
|
Loading…
Reference in a new issue