januda-cli 1.0.0 → 1.0.2
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.
- package/index.js +12 -23
- package/package.json +7 -3
- package/shani.png +0 -0
- package/shani1.png +0 -0
package/index.js
CHANGED
|
@@ -1,28 +1,17 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
JANUDA JANANDITH
|
|
6
|
-
████████████████████████████████
|
|
7
|
-
|
|
8
|
-
🚀 Software Engineer | IoT Developer
|
|
9
|
-
|
|
10
|
-
Skills
|
|
11
|
-
• Java
|
|
12
|
-
• React.js
|
|
13
|
-
• DevOps
|
|
14
|
-
• IoT (ESP32)
|
|
3
|
+
const { exec } = require("child_process");
|
|
4
|
+
const path = require("path");
|
|
15
5
|
|
|
16
|
-
|
|
17
|
-
• Job4U MERN Job Portal
|
|
18
|
-
• IoT Weather Monitoring System
|
|
19
|
-
• Teacher Attendance System
|
|
20
|
-
|
|
21
|
-
Contact
|
|
22
|
-
Email : janudakodi@gmail.com
|
|
23
|
-
GitHub: github.com/januda
|
|
6
|
+
const img = path.join(__dirname, "shani1.png");
|
|
24
7
|
|
|
8
|
+
console.log(`
|
|
9
|
+
████████████████████████████████
|
|
10
|
+
Shani Gamage
|
|
25
11
|
████████████████████████████████
|
|
26
|
-
`;
|
|
27
12
|
|
|
28
|
-
|
|
13
|
+
💖 A Promise For Shani
|
|
14
|
+
Opening photo...
|
|
15
|
+
`);
|
|
16
|
+
|
|
17
|
+
exec(`start "" "${img}"`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "januda-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Januda terminal portfolio",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,8 +9,12 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"portfolio",
|
|
14
|
+
"cli",
|
|
15
|
+
"januda"
|
|
16
|
+
],
|
|
13
17
|
"author": "Januda Janandith",
|
|
14
18
|
"license": "ISC",
|
|
15
19
|
"type": "commonjs"
|
|
16
|
-
}
|
|
20
|
+
}
|
package/shani.png
ADDED
|
Binary file
|
package/shani1.png
ADDED
|
Binary file
|