januda-cli 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.
Files changed (2) hide show
  1. package/index.js +28 -0
  2. package/package.json +16 -0
package/index.js ADDED
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env node
2
+
3
+ const info = `
4
+ ████████████████████████████████
5
+ JANUDA JANANDITH
6
+ ████████████████████████████████
7
+
8
+ 🚀 Software Engineer | IoT Developer
9
+
10
+ Skills
11
+ • Java
12
+ • React.js
13
+ • DevOps
14
+ • IoT (ESP32)
15
+
16
+ Projects
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
24
+
25
+ ████████████████████████████████
26
+ `;
27
+
28
+ console.log(info);
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "januda-cli",
3
+ "version": "1.0.0",
4
+ "description": "Januda terminal portfolio",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "januda": "./index.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": ["portfolio", "cli", "januda"],
13
+ "author": "Januda Janandith",
14
+ "license": "ISC",
15
+ "type": "commonjs"
16
+ }