1.1.1 • Published 1 year ago

sistatistics-client v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

SIStatistics service web client.

Install

npm install sistatistics-client

Example usage

import SIStatisticsClient, { GamePlatforms } from 'sistatistics-client';

const client = new SIStatisticsClient({ serviceUri: '<insert service address here>' });

const now = new Date();
const ONE_HOUR = 60 * 60 * 1000;

const statistics = await siStatisticsClient.getLatestTopPackagesAsync({
    platform: GamePlatforms.GameServer,
    from: new Date(now.getTime() - ONE_HOUR),
    to: now,
});

console.log(statistics);
1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

2 years ago