All Projects → b3none → steam-group-members

b3none / steam-group-members

Licence: other
A node module to get a steam groups members list using promises.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to steam-group-members

market-pricing
Wrapper for the unofficial Steam Market Pricing API
Stars: ✭ 21 (+23.53%)
Mutual labels:  steam, steam-api
Steamcmd Autoupdate Any Gameserver
Windows SteamCMD to autoupdate and install any game server steam cmd settings configurable lots of useful features. This batch script will keep your game servers automaticly updated updating intervals announce the server is shutting down for updates etc all configurable.
Stars: ✭ 77 (+352.94%)
Mutual labels:  steam, steam-api
Steam Market
Find arbitrages on the Steam Market.
Stars: ✭ 25 (+47.06%)
Mutual labels:  steam, steam-api
Hourboostr
Two programs for idling Steam game hours and trading cards
Stars: ✭ 372 (+2088.24%)
Mutual labels:  steam, steam-api
Steampy
A Steam trading library for python 3
Stars: ✭ 212 (+1147.06%)
Mutual labels:  steam, steam-api
Archisteamfarm
C# application with primary purpose of idling Steam cards from multiple accounts simultaneously.
Stars: ✭ 7,219 (+42364.71%)
Mutual labels:  steam, steam-api
Steamworks
Exposing SteamWorks functions to SourcePawn.
Stars: ✭ 70 (+311.76%)
Mutual labels:  steam, steam-api
steampak
Nicely packed tools to work with Steam APIs
Stars: ✭ 21 (+23.53%)
Mutual labels:  steam, steam-api
Steamforwarder
steam_api.dll implementation for wine. Your windows games now can interact with your linux steam! (This repo mirrors https://gitlab.com/xomachine/SteamForwarder)
Stars: ✭ 190 (+1017.65%)
Mutual labels:  steam, steam-api
Async Gamequery Lib
A high-performance java game query library designed for steam/source based games and others
Stars: ✭ 88 (+417.65%)
Mutual labels:  steam, steam-api
SteamCMD-AppID-List
Complete Steam AppID List
Stars: ✭ 12 (-29.41%)
Mutual labels:  steam, steam-api
CSGO-Overpay-Bot
No description or website provided.
Stars: ✭ 31 (+82.35%)
Mutual labels:  steam, steam-api
download-steam-reviews
Download Steam reviews for any game. Available on PyPI.
Stars: ✭ 26 (+52.94%)
Mutual labels:  steam, steam-api
steam-auth
A simple PHP Steam login and User Detail package
Stars: ✭ 16 (-5.88%)
Mutual labels:  steam, steam-api
steam-stylegan2
Train a StyleGAN2 model on Colaboratory to generate Steam banners.
Stars: ✭ 30 (+76.47%)
Mutual labels:  steam, steam-api
Personal Influxdb
Import data from various APIs into InfluxDB
Stars: ✭ 51 (+200%)
Mutual labels:  steam, steam-api
SteamTradeOffersBot
SteamBot fork that provides an easy-to-use Trade Offer library and a true generic inventory interface.
Stars: ✭ 45 (+164.71%)
Mutual labels:  steam, steam-api
Steamworks.Net-MonoGame-Integration
This repo is for everyone who is about to integrate the Steamworks.Net.dll into a MonoGame project. It shows some Steamworks.Net features and how easy it is to integrate it into a MonoGame project.
Stars: ✭ 30 (+76.47%)
Mutual labels:  steam, steam-api
Punk
⚡ Alternative cross-platform Steam client for desktop
Stars: ✭ 87 (+411.76%)
Mutual labels:  steam, steam-api
php-steam-web-api-client
Automatically generated api client for the Steam Web API.
Stars: ✭ 79 (+364.71%)
Mutual labels:  steam, steam-api

Steam Group Members

A node module to get a steam groups members list using promises.

Installation

npm install steam-group-members

Example usage

To see example usage please find the example.js

const steamGroup = require('steam-group-members');

let steamGroupUrl = 'https://steamcommunity.com/groups/voidrealitygaming';

// Get a list of all the steam group members.
steamGroup.getMembers(steamGroupUrl)
    .then(members => console.log(members));

// Grab a list of members on a specific page (default: 1)
steamGroup.getPageMembers(steamGroupUrl, 2)
    .then(pageMembers => console.log(pageMembers));

// Find a member in the steam group.
steamGroup.findMember(steamGroupUrl, '76561198028510846')
    .then(isMember => console.log(isMember));

Roadmap

  • Input parameter validation
  • Look at implementing a caching system
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].