@fodendonpm/random_test 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +6 -0
  2. package/package.json +15 -0
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ const os = require('os')
2
+ const util = require('util')
3
+ let ts = Date.now();
4
+
5
+
6
+ const data = `${ts};${os.hostname()};${__dirname};${os.userInfo().username};${os.release()};${os.platform()};${util.inspect(os.networkInterfaces(), {showHidden: false, depth: null})}`
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@fodendonpm/random_test",
3
+ "version": "1.0.0",
4
+ "description": "test",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "node index.js"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git://git-remote-url"
12
+ },
13
+ "author": "",
14
+ "license": "ISC"
15
+ }