![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
scraper-http-client-request
Advanced tools
HTTP client for scrapers with guaranted delivery (retry), concurrency, cookies jar, zlib, Cloudflare bypasser, rate limit (throttle)
Powerful HTTP client for scrapers with cookies jar, cloudflare bypasser, rate limiter, concurrency and retrys
npm i scraper-http-client-request bottleneck
You will get HTTP client request-promise-native
wrapped together with
and it will be wrapped into created by you bottleneck you can immediately scrape something after that, using by default direct connection
And then, if client will throw any error - we will retry with proxy
And then, if client will throw any error - we will retry without proxy but with cloudflare-bypasser
using direct connection
And then, if client still throwing error - we will retry both together with proxy and with cloudflare-bypasser
And then if client STILL throws error - we again will try to access it directly, and everything will repeat again from first stage as long, as many retries you've set (by default 10
)
const DEFAULT_OPTIONS = {
json: true,
resolveWithFullResponse: true,
gzip: true,
followAllRedirects: true,
encoding: 'utf8',
agentOptions: {
keepAlive: true,
keepAliveMsecs: 3000,
},
timeout: 8000,
headers: {
accept: 'application/json,text/javascript,text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'accept-language': 'en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',
pragma: 'no-cache',
'cache-control': 'no-cache',
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
'Access-Control-Allow-Headers': 'Origin, X-Requested-With, Content-Type, Accept',
'upgrade-insecure-requests': 1,
},
}
you can .addOptions(additionalOptionsObject)
and it weel be deep merged into above defaults.
const Bottleneck = require('bottleneck')
const client = require('scraper-http-client-request')(new Bottleneck({
maxConcurrent: 10, //concurrent requests at the same time
minTime: 333 //slow down, limit rate to keep pause between requests, reead the [docs](https://npmjs.com/package/bottleneck)
}))
const { STAGES: { PROXIED_CLOUDFLARE } } = require('scraper-http-client-request/constants')
/*
**__Important__** on case of retry we have by default 4 stages cycle. You can set any other starting stage.
In case if we are RAW 'proxy' option will be ignore, but it must be present
1. RAW
2. CLOUDFLARE
3. PROXIED_RAW
4. PROXIED_CLOUDFLARE
*/
client.setStage(PROXIED_CLOUDFLARE) //get full needed security from start, to avoid pauses on load
client.setProxy({ host: '', port: 3128 })
client.shouldUseProxyNextTime() //it will use proxy next time
client.addOptions() //merge some options to defaults of `request-promise-native`
client.setPromiseRetryOptions(options) //you can set your own
FAQs
HTTP client for scrapers with guaranted delivery (retry), concurrency, cookies jar, zlib, Cloudflare bypasser, rate limit (throttle)
We found that scraper-http-client-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.