2.0.3 • Published 3 years ago

steam-players v2.0.3

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

steam-players

Node.js package for get Steam player summaries.

Docs

Documentation

Prerequisites

Installation

npm install steam-players

Credentials

1. Steam

# Account
Create an Steam account on https://store.steampowered.com/.

# API Key
Create an API key on https://steamcommunity.com/login/home/?goto=%2Fdev%2Fapikey.

Example

const Steam = require('steam-players');

const steam = new Steam({
  key: 'STEAM_API_KEY',
});

(async () => {
  try {
    const playerSummaries = await steam.playerSummaries({ steamids: '76561198027639832' });
    console.log(playerSummaries);
  } catch (error) {
    console.error(error);
  }
})();

Built With

Authors

Acknowledgments

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago