Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@blizzard-api/hs
Advanced tools
A series of helpers to interact with the Hearthstone Blizzard API
This package aims to make it easier for you to integrate with the Blizzard Battle.net API, specifically for Diablo 3.
npm i @blizzard-api/core @blizzard-api/hs
You can get paths, namespaces, parameters and more for a specific endpoint by calling it from the hs
export.
import { hs } from "@blizzard-api/hs"
//or
import hs from "@blizzard-api/hs"
const season = hs.allMetadata(123);
^ Resource<AllMetadataResponse>
If you don't want to use the exported hs object, you can also access the functions directly:
import { allMetadata } from "@blizzard-api/hs"
const seasonI = season(123);
^ Resource<AllMetadataResponse>
If you need the response types, they are also exported with "Response" appended, so to get the response type from the above code, you can import it like this:
import type { SeasonResponse } from '@blizzard-api/hs';
If you simply want to use the existing object, you can use the helper, ExtractResourceType
, from @blizzard-api/core
like so:
import { hs } from "@blizzard-api/hs"
const season = hs.allMetadata();
^ Resource<AllMetadataResponse>
type AllMetadataResponse = ExtractResourceType<typeof season>;
The types are manually created from using the Blizzard API documentation, and are as accurate as possible with smoke testing each endpoint. However, no-one is perfect so there is likely to be some discrepancies. If you encounter any issues with the types from this package, please open an issue or a pull request.
While this package is made to function on it's own, it performs even better when combined with @blizzard-api/client
where you can easily request data combining the two libraries.
import { createBlizzardApiClient } from '@blizzard-api/client';
import { hs } from '@blizzard-api/hs';
const client = await createBlizzardApiClient({
key: 'environment.blizzardClientId',
secret: 'environment.blizzardClientSecret',
origin: 'eu',
});
//Response will automatically be typed with the appropriate values
const response = await client.sendRequest(hs.allMetadata());
console.log(response.data);
^ typeof AllMetadataResponse
FAQs
A series of helpers to interact with the Hearthstone Blizzard API
The npm package @blizzard-api/hs receives a total of 23 weekly downloads. As such, @blizzard-api/hs popularity was classified as not popular.
We found that @blizzard-api/hs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.