@allan.pereira.dev/epicgames
v1.0.0
Published
EpicGames is a minimalist scraper that returns the free games of the week
Downloads
5
Readme
EpicGames
EpicGames is a minimalist scraper that returns the free games of the week
Install
Install EpicGames with npm
npm install @allan.pereira.dev/epicgames
Usage/Examples
import { EpicGames } from '@allan.pereira.dev/epicgames';
const epicGames = new EpicGames();
epicGames
.FreeGames({ language: 'pt-BR', countryCode: 'BR' })
.then((res) => console.log(res));
Output
[
ResultMapper {
data: {
title: 'example',
description: '...',
id: '...',
isCodeRedemptionOnly: true,
namespace: '...',
keyImages: [],
price: [],
offerMappings: [],
productSlug: 'example'
}
}
]