JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 148
  • Score
    100M100P100Q82531F
  • License MIT

A NodeJS package for searching the steam marketplace

Package Exports

  • steam-market-search

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (steam-market-search) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

steam-market-search

NPM

What is this?

A NodeJS package for searching the steam marketplace

1.1.2 changes


It looks like the steam market changed and this package broke, So I've recoded it from scratch. Response cleaning is now optional. Use searchTF2 and searchCSGO for the cleaned responses, Otherwise just use search("730", options).

Quick Start

Install in your app directory

$ npm install steam-market-search --save

then

var SteamMarket = require("steam-market-search");

Search CSGO

CSGO weapons, skins, knives and such. For trading cards use searchCommunity

SteamMarket.searchCSGO({ find : 'Death by Kitty' }).then(console.log, console.warn);

Search TF2

TF2 weapons, skins, hats and paints. For trading cards use searchCommunity

SteamMarket.searchTF2({ find : 'Pride Scarf' }).then(console.log, console.warn);

Search Steam Community

All community items. These are trading cards, booster packs, gems, emoticons, backgrounds.

// 311210 = Call of Duty: Black Ops III
SteamMarket.searchCommunity("311210").then(console.log, console.warn);

Search custom

Search for items by another game, IE - Playerunknown's Battlegrounds. ``javascript SteamMarket.search("578080", { find : "Trenchcoat" }).then(console.log, console.warn);



- Please report any issues [here](https://github.com/DrKain/SteamMarketSearch/issues)