cloudscraper-ts
v1.0.9
Published
Bypasses some anti-bot pages made by CloudFlare.
Downloads
4
Readme
cloudscraper-ts
Node.JS library to bypass some of Cloudflare's anti-ddos page. All credit goes to the original author here.
About CloudScraper
There are some anti-bot pages such as NovelUpdates that can be bypassed via the normal CloudScraper package. I simply rewrote it and added TypeScript types to it.
Usage
This is pretty scuffed, so I suggest you take a look at the original GitHub page for more documentation. Essentially, all that the function does is the following:
const request = require("./dist/index").default;
const body = {
action: "nd_ajaxsearchmain",
strType: "desktop",
strOne: "Mushoku Tensei",
strSearchType: "series"
}
request({
uri: "https://www.novelupdates.com/wp-admin/admin-ajax.php",
method: "POST",
formData: body
}, {
challengesToSolve: 3
}).then(res => {
console.log(res.body);
});