steamresolver.docs.demiann.dev
Open in
urlscan Pro
76.223.121.104
Public Scan
Submitted URL: http://steamresolver.docs.demiann.dev/
Effective URL: https://steamresolver.docs.demiann.dev/
Submission: On April 04 via api from US — Scanned from DE
Effective URL: https://steamresolver.docs.demiann.dev/
Submission: On April 04 via api from US — Scanned from DE
Form analysis
0 forms found in the DOMText Content
Steam Resolver Search v2.1.3 * Search * Getting Started * Introduction * Installation * Constants * Custom * ID to Custom URL * Group ID to Custom URL * ID * Custom to ID * Group Url to id * Profile * Custom URL to Profile * Group Url to Profile * ID to Profile * Group ID to Profile * Community * Releases * More INTRODUCTION A NodeJS SteamResolver with only two dependencies isomorphic-unfetch and xml2js. FEATURES ID to Custom url Custom url to ID ID to Full Profile Custom url to full Profile Group url to ID Group ID to full profile SIMPLE EXAMPLE index.js // Import the wrapper library import SteamResolver from '@qgisk/steamresolver'; // Or for CommonJS const {SteamResolver} = require('@qgisk/steamresolver'); // Initiate the client const Resolve = new SteamResolver(); // Create a function that gets the custom url const get = async () => { const fromID = await Resolve.toCustomURL('76561198250920834'); const fromLink = await Resolve.toCustomURL('htts://steamcommunity.com/profiles/76561198250920834'); console.log(fromID, fromLink); }; // Execute the function get(); Edit this page on GitHub Updated at Mon, Feb 21, 2022 Installation On this page * Features * Simple Example