diff --git a/README.md b/README.md index a569dc6..175a289 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ This module provides an easy interface for the Steam Community website. This mod It supports Steam Guard and CAPTCHAs. +This reports anonymous usage statistics to the author. [See here](https://github.com/DoctorMcKay/node-stats-reporter) for more information. + **Have a question about the module or coding in general? *Do not create a GitHub issue.* GitHub issues are for feature requests and bug reports. Instead, post in the [dedicated forum](https://dev.doctormckay.com/forum/8-node-steamcommunity/). Such issues may be ignored!** diff --git a/index.js b/index.js index c14c091..28e72a8 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,5 @@ +require('@doctormckay/stats-reporter').setup(require('./package.json')); + var Request = require('request'); var RSA = require('node-bignumber').Key; var hex2b64 = require('node-bignumber').hex2b64; diff --git a/package.json b/package.json index 06273e1..c316338 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "url": "https://github.com/DoctorMcKay/node-steamcommunity.git" }, "dependencies": { + "@doctormckay/stats-reporter": "^1.0.2", "request": "^2.81.0", "node-bignumber": "^1.2.1", "steamid": "^1.0.0",