Socket
Socket
Sign inDemoInstall

steam-players

Package Overview
Dependencies
7
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    steam-players

Node.js package for get Steam player summaries


Version published
Weekly downloads
6
decreased by-14.29%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

steam-players

Node.js package for get Steam player summaries.

Docs

Documentation

Prerequisites

  • Node.js

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

Keywords

FAQs

Last updated on 14 Aug 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc