1.1.5 • Published 2 years ago

tarkov-market v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago
import TarkovMarket from 'tarkov-market';

async function demo () {
  const client = new TarkovMarket('myapikey');
  // Get all items
  const items = await client.getAll();
  console.log(`Got ${items.length} items`);
  // Get a single item
  const item = await client.getItem("f0fa8457-6638-4ad2-b7e8-4708033d8f39");
  console.log(`Look, it's a ${item.name} !`); // Output: Look, it's a Secure Flash drive !
  // Search for items
  const searchResults = await client.search("secure flash");
  console.log(`Search results: `, searchResults);
}

demo();
$ yarn add tarkov-market

or npm install tarkov-market

Make sure to grab an api key !

This project is licensed under the MIT License

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.0-alpha.2

3 years ago

1.0.0-alpha.1

3 years ago

1.0.0-alpha.0

3 years ago