/esportal-scraper

A consumable Node package to scrape data from esportal

Primary LanguageTypeScriptOtherNOASSERTION

esportal-scraper

A consumable Node package to scrape data from Esportal. Due to Esportal API being protected by Cloudflare, the best approach is to spin up a headless browser and scrape the API.
Ulixee Hero is used to bypass Cloudflare.

Usage

Install

To start, it's best to run with a local Hero Core, so you should install @ulixee/hero-core as a peer dependency:

npm i esportal-scraper @ulixee/hero-core

Later, if you'd like to use a remote Hero Core, you can remove the @ulixee/hero-core peer dependency.

Example Usage

  • Typescript:
import { EsportalScraper } from 'esea-scraper';

const esportal = new EsportalScraper();
await esportal.getPlayer('76561199023463910');
  • Javascript:
const esportalScraper = require("esportal-scraper");
const esportal = new esportalScraper.EsportalScraper;
await esportal.getPlayer("76561199023463910")