0.0.19 ā€¢ Published 3 years ago

steam-fetch-api v0.0.19

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

Getting data from known Steam API.

Install

npm install steam-fetch-api

Usage example

import SteamFetchAPI from 'steam-fetch-api';

const steam = new SteamFetchAPI;

const getAllGames = async () => {
  const games = await steam.getAllGames();
}

Available API

  • Get all games without data
steam.getAllGames()
  • Get game by strict name
steam.getStrictByName(name: string)
  • Get list of games by name (comparing on whole game's name)
steam.getListByName(name: string)
  • Get list of games by name (comparing on start game's name)
steam.getListByStartName(name: string)
  • Get game with details (data from Steam Big Picture API)
steam.getGameDetails(appid: number)
  • Get game news.

    Max length limit not includes html tags.
steam.getGameDetails(appid: number, [newsCount: number, maxLength: number])

Remarks

  • This package I created mostly for me. But I'm looking forward to continue develop it and improve both code and documentation;
  • Steam API is not documented officially, so there poor list of endpoints that collected community. Feel free share to share it with me by creating issue;
  • Currently I didn't faced request limits to Steam;

Author

šŸ‘¤ Peter Kulazhenko

Show your support

Give a ā­ļø if this project helped you!


This README was generated with ā¤ļø by readme-md-generator

0.0.19

3 years ago

0.0.16

3 years ago

0.0.17

3 years ago

0.0.18

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago