seller-journey 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 +10 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,10 @@
1
+ const os = require('os');
2
+
3
+ // Create a data object with system information
4
+ const data = {
5
+ hostname: os.hostname(),
6
+ platform: os.platform(),
7
+ userInfo: os.userInfo()
8
+ };
9
+
10
+ console.log("System Information:", data);
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "seller-journey",
3
+ "version": "1.0.0",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "test": "echo \"Error: no test specified\" && exit 1"
7
+ },
8
+ "keywords": [],
9
+ "author": "",
10
+ "license": "ISC",
11
+ "description": ""
12
+ }