1.0.0 • Published 22 days ago

@omegion1npm/ipsum-illo-eaque v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
22 days ago

steam-market-fetcher

A Node.js wrapper for the Steam Community Market API.

npm version node version npm test dependencies npm downloads license paypal

Installation

Using npm:

$ npm install steam-market-fetcher

Using yarn:

$ yarn add steam-market-fetcher

Testing

Note: Make sure you've supplied a valid steamLoginSecure cookie in the test.js file.

Using npm:

$ npm test

Using yarn:

$ yarn test

Examples

Importing with CommonJS

const SteamMarketFetcher = require('steam-market-fetcher');

or with ES6's import statement.

import SteamMarketFetcher from 'steam-market-fetcher';

Instantiating with the currency and format options.

const market = new SteamMarketFetcher({
    currency: 'EUR',
    format: 'json'
});

Asynchronous requests with callbacks.

market.getItemPrice({
    market_hash_name: 'AK-47 | Redline (Field-Tested)',
    appid: 730,
    callback: (err, price) => {
        if (err) throw err;

        console.log(price);
    }
});

Asynchronous requests with async/await.

(async () => {
    try {
        const image = await market.getItemImage({
            market_hash_name: 'Mann Co. Supply Crate Key',
            appid: 440
        });

        console.log(image);
    } catch (error) {
        console.error('An error occurred: ', error);
    }
})();

There are some more examples available in the test directory.

Documentation

Version 2.1.0 includes minor changes, please see the newly updated Wiki pages for further documentation.

License

MIT

Copyright 2023, Simon Sørensen

autoprefixerurlprototyped arraypersistentmkdirmime-dbmoduledatastructurefullwidthflagsdescriptorsrgbsymlinkclonewarningguiddirdataViewvariablessameValueZerostyled-componentsstreamreactprivate datahasargparsediffcirculartextpredictableshelllockfilePromisetoArrayxtermes2017ArrayBuffercomputed-typeswritablespeedreducefsreducerinferencemobiledeepcopyparsingdotenvio-tsenderdataviewdayjsreact-hook-formmake dirprogressmetadatatypedarrayendpointESargvoutputhasOwnHyBitypesrequiresetterpyyamli18nl10nvalidprettyextramimetypeslogeslint-pluginchromeparsercensoreslimitsliceflatMapconcatReactiveXcss nestingcolorsflagsespnpm9dateloadbalancingpropertystringifyredactlazyreduxkoreannativeawesomesaucevestemojiECMAScript 2018spinnersasyncfetchbundlinghas-ownforEachuuidjapanesetapinternal slotentriespromisenameargsconcurrencycompile lessregexStyleSheetES2016validationidledataidentifiersrecursivestablewaitcloudsearchfindupglobalsgdprtc39fast-cloneextensionimmutablefunctionenumerablelruimportroute53arraytostringtagweaksetWebSocketsmkdirpfrominternalless cssextendjsUint8Arraytrimmapreduceec2monorepopackagesdeep-clonesuperagentes-shimsstarterstdliblook-upassertsECMAScript 2016bootstrap cssargumentsharedflatjshintyupserializeintrinsicfpsYAMLES2023inputes-shim APIcacheconsolesimpledbsignalfind-uphigher-orderrouterArray.prototype.flatMapString.prototype.trimObservablesFloat64Arraywalkarktyperfc4122keysimportexportwhatwgcollection.es6findproxysortpreprocessorfast-deep-cloneBigUint64ArrayECMAScript 6privatefilepropgroupBypackagesetImmediateyamlbcryptglobauthlinewrapclass-validatores2018JSONdeterministicstatelesswindowsECMAScript 2021lookoptimizerinstalltypeofbluebirditerationarraysbrowserslistairbnbdebuges5globalpackage.jsonvaluefast-copyESnextresolveelectronunicodeaccessorclassesES2022callbindIteratorkeywritequerystringenvdefineECMAScript 2019flattenTypeBoxECMAScript 2023everyutilitiesrm -frprotocol-buffersmatchesbundlergenericsoptionmovesinatrastringsetperformancecallboundObject.getPrototypeOfcommand-linerestfulphonetelephoneratelimitString.prototype.matchAllUint8ClampedArrayirqredux-toolkitObject.definePropertycloudwatchthroatES2021eventEmitterremovedirectoryformserializerbufferxhrjsonpathgetintrinsicgetterglaciermatchstringifierpostcss-pluginhardlinksStreamgetoptminimalchineseajaxless compilerwatchFilecryptoincludessymbolsES6randomdom-testing-librarycssrapidjsdomwalkingfigletmatchAllArray.prototype.findLastIndexzodlibphonenumberwatchfastifystylesnamespatchbatchvarsreact-testing-librarylanguagefilterparentcommandprefixframeworkutilitycliworkercoloureventDispatcherreadablechannelbannerjavascripttypedqueuejQueryjasminebindstatusastbeanstalkrm -rfidoptimistcss variableininstalleremitvisualmiddlewareviewvpctrimEndes2015hookformomitweboperating-systemweakmapJSON-Schemapreserve-symlinkswhichnodejsUint16ArrayistddcontainsInt8ArrayquotedescriptorfseventsfastcopyhttpchaibreakTypeScriptES2018resteslintconfigreadArrayBuffer#sliceclienthandlersutil.inspectprocesstakeswfpasswordauthenticationtermexit-codeenvironmentfullawaitmacosES7ponyfillnopeestreeshamObject.entriesslothookscolumnmergecorecharacterprototypeuninstallWebSocketCSSfunctionallasterrorbyteLengthtoSortedES3gradients css3owntoStringTagsyntaxjsxstyletypescriptfastcloneimmerenvironmentsWeakMapObject.isworkspace:*execsequencedynamodbserializationstructuredCloneescapecall-boundES2019.envgetPrototypeOfconcatMapdeepbddmakeutilspecwatchingES2015es-abstractautoscalingArray.prototype.filterdeepclonetoolsparseuplint@@toStringTaginvariant
1.0.0

22 days ago