Releases: extractus/feed-extractor
Releases · extractus/feed-extractor
v7.0.7
06 Nov 09:49
Compare
Sorry, something went wrong.
No results found
Fix issue #116
Update dependencies
v7.0.6
12 Sep 03:48
Compare
Sorry, something went wrong.
No results found
v7.0.5
24 Aug 10:31
Compare
Sorry, something went wrong.
No results found
Add support to RDF format (#80 )
Allow to set custom attributeNamePrefix (#100 )
v7.0.4
24 Aug 01:47
Compare
Sorry, something went wrong.
No results found
Fix issue #108
Change the order of params to use description first. Apply to rss/atom normalization.
v7.0.3
22 Aug 02:10
Compare
Sorry, something went wrong.
No results found
Fix issue #105
Update dependencies
v7.0.2
16 Aug 03:10
Compare
Sorry, something went wrong.
No results found
Fix issue #103
Update dependencies
Update README
v7.0.1
22 Jul 14:47
Compare
Sorry, something went wrong.
No results found
Update dependencies
Fix imports section
Allow to disable description truncation (#101 )
v7.0.0
12 Jul 02:36
Compare
Sorry, something went wrong.
No results found
Add deno.json & imports sections
Update dependencies
Improve README
v6.3.0
08 Jul 09:02
Compare
Sorry, something went wrong.
No results found
Add support to signal
Stop support Node < 15
Stop support commonjs version
Update examples code
Update dependencies
v6.2.4
05 Jul 06:19
Compare
Sorry, something went wrong.
No results found
Update dependencies
Add agent to fetchOptions for better proxy support
Example feed extraction via proxy server with agent
import { extract } from '@extractus/feed-extractor'
import { HttpsProxyAgent } from 'https-proxy-agent'
const proxy = 'http://abc:[email protected] :31113'
const url = 'https://news.google.com/rss'
const feed = await extract ( url , { } , {
agent : new HttpsProxyAgent ( proxy ) ,
} )
console . log ( 'Run feed-extractor with proxy:' , proxy )
console . log ( feed )