1.0.5 • Published 3 years ago

psn-wrapper v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A not official PSN API Wrapper

The currently existing services are

SERVICESDESCRIPTIONDEFAULT
topGamesReturns the top games on psn at the momentlanguage = 'pt-br'
gameByTitleSearch the game by namelanguage = 'en'
gameByIdSearch the game by idlanguage = 'pt-br'

** By default each service returns only 10 items.

*** Language and limit are optional .

Install

 npm i psn-wrapper --save

how to use

topGames

import { topGames } from 'psn-wrapper';

const top = async () => {
  const result = await topGames({ limit: 20, language = 'pt-br' });
  console.log(result);
};

gameByTitle

import { gameByTitle } from 'psn-wrapper';

const games = async () => {
  const result = await gameByTitle('House of Ashes ', { limit: 20, language = 'en' });
  console.log(result);
};

gameById

import { gameById } from 'psn-wrapper';

const games = async () => {
  const result = await gameById('UP0700-CUSA08789_00-SHINOBISTRIKER01', { limit: 20, language = 'pt-br' });
  console.log(result);
};

Response sample

[
  {
    id: 'UP0700-CUSA08789_00-SPASS4CHARAITACH',
    title: 'NTBSS Pacote de treinamento de personagem mestre - Itachi Uchiha (Reanimação)',
    url: 'https://store.playstation.com/#!/en-us/games/cid=UP0700-CUSA08789_00-SPASS4CHARAITACH',
    price: 'R$21,50',
    strikePrice: null,
    onSale: false,
    discount: null,
    psPlusPrice: null,
    lastUpdated: 1635994800000,
    image: 'https://store.playstation.com/store/api/chihiro/00_09_000/container/US/en/19/UP0700-CUSA08789_00-SPASS4CHARAITACH/image?w=225&h=225',
    details: { platforms: [Array] }
  }
]

use as package from git

 "psn-wrapper": "ssh://git@github.com:henriquemsouza/psn-wrapper.git"
1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago