screenscraper-js
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ScreenScraperJS

A Javascript wrapper for the ScreenScraper API.

Installation

yarn add screenscraper-js
# or
npm install screenscraper-js
# or
pnpm install screenscraper-js

What does it add?

  • Unified types
  • Retries on fail
  • Only returns text in the selected language, defaults to english
  • Cleans up all the returns to have it be consistent
  • Translate all the parameters and return object into english

Usage/Examples

First you need to initialize screenscraper-js by having:

const screenScraperJS = new ScreenScraperJS({
  // required
  // you can request a developer account here: https://www.screenscraper.fr/forumsujets.php?frub=12&numpage=0
  devId: "yourDevID",
  devPassword: "yourDevPassword",
  // optional
  userName: "yourUserName",
  userPassword: "yourUserPassword",
});

Now you may use it and right now it contains three functions:

Get a signle game

const game = await screenScraperJS.getGame({ gameId: 3 });

Parameters

{
  gameId?: string | number;
  systemId?: number;
  language?: "en" | "de" | "es" | "fr" | "it" | "pt";;
  crc?: string;
  md5?: string;
  sha1?: string;
  romtype?: string;
  romname?: string;
  romsize?: string;
  serialnum?: string;
}

Returns type

{
    id: string;
    publisher: Editor;
    developer: Developer;
    players: string;
    rotation: string;
    rating: string;
    system: System;
    name: string;
    synopsis: string | undefined;
    classifications: {
        type: string;
        text: string;
    },
    dates: string,
    family: {
        id: string,
        shortName: string,
        name: string,
    },
    genres: {
        id: string,
        name: string,
    }
    modes: {
        id: string,
        name: string,
    },
    media: {
        [type: string]: any;
    }
}

Search for a game

const game = await screenScraperJS.getGame({ gameId: 3 });

Parameters

{
  game: string;
  systemId: number;
  language?: "en" | "de" | "es" | "fr" | "it" | "pt";;
}

Returns type

{
    id: string;
    publisher: Editor;
    developer: Developer;
    players: string;
    rotation: string;
    rating: string;
    system: System;
    name: string;
    synopsis: string | undefined;
    classifications: {
        type: string;
        text: string;
    },
    dates: string,
    family: {
        id: string,
        shortName: string,
        name: string,
    },
    genres: {
        id: string,
        name: string,
    }
    modes: {
        id: string,
        name: string,
    },
    media: {
        [type: string]: any;
    }
}[]

Get systems

const systems = await screenScraperJS.getSystems();

Returns type

export interface System {
  id: number;
  extensions: string;
  type: string;
  romtype: string;
  name: string;
  company: string;
  releaseDate: string;
  endOfLiveDate: string;
  mediaType: string;
  media: Media;
}

export interface Media {
  "logo-monochrome": SingleMedia[];
  wheel: SingleMedia[];
  "logo-monochrome-svg": SingleMedia[];
  "logo-svg": SingleMedia[];
  photo: SingleMedia[];
  illustration: SingleMedia[];
  controller: SingleMedia[];
  background: SingleMedia[];
  screenmarquee: SingleMedia[];
  "screenmarquee-vierge": SingleMedia[];
  "bezel-4-3": SingleMedia[];
  "bezel-16-9": SingleMedia[];
}

interface SingleMedia {
  region: string;
  format: string;
  url: string;
}

License

MIT

Package Sidebar

Install

npm i screenscraper-js

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

2.47 MB

Total Files

55

Last publish

Collaborators

  • saravieira