xoaryaa 2.0.7 → 2.0.8

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 (4) hide show
  1. package/README.md +37 -0
  2. package/cli.mjs +10 -3
  3. package/npx.gif +0 -0
  4. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # npx card
2
+
3
+ ![npm version](https://img.shields.io/npm/v/xoaryaa)
4
+ ![license](https://img.shields.io/npm/l/xoaryaa)
5
+ ![open issues](https://img.shields.io/github/issues/xoaryaa/npx_card)
6
+
7
+ ## Overview
8
+
9
+ `xoaryaa` is an interactive business card in the form of a Node.js CLI tool. By simply running `npx xoaryaa` in any terminal with Node.js installed, users can instantly access my professional information. This project is open source and encourages contributions from the developer community.
10
+
11
+ ## Features
12
+
13
+ - Displays my contact information, social media profiles, and other relevant details.
14
+ - Simple to use: Just run `npx xoaryaa` in any terminal.
15
+ - Open source: Contributions are welcome!
16
+
17
+ ## If you’d like to contribute to this project, follow these steps:
18
+ 1. Clone the repository
19
+
20
+ ```bash
21
+ git clone https://github.com/xoaryaa/npx_card.git
22
+ ```
23
+
24
+ 2. Navigate to the project directory
25
+
26
+ ```bash
27
+ cd xoaryaa
28
+ ```
29
+
30
+ 3. Install the dependencies
31
+
32
+ ```bash
33
+ npm install
34
+ ```
35
+
36
+ ### Make your changes and submit a pull request!
37
+
package/cli.mjs CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  'use strict';
4
4
 
@@ -16,7 +16,7 @@ const questions = [
16
16
  {
17
17
  type: "list",
18
18
  name: "action",
19
- message: "What you want to do?",
19
+ message: "What do you want to do?",
20
20
  choices: [
21
21
  {
22
22
  name: `Send me an ${chalk.green.bold("email")}?`,
@@ -25,6 +25,13 @@ const questions = [
25
25
  console.log("\nDone, see you soon at inbox.\n");
26
26
  }
27
27
  },
28
+ {
29
+ name: `Download my ${chalk.magentaBright.bold("Resume")}?`,
30
+ value: () => {
31
+ open('https://drive.google.com/file/d/1g1MxLGW5Jldl1CbeF0QEKBqKYttAjRU6/view?usp=sharing');
32
+ console.log("\nSee you with my projects.\n");
33
+ }
34
+ },
28
35
  {
29
36
  name: "Just quit.",
30
37
  value: () => {
@@ -59,7 +66,7 @@ const me = boxen(
59
66
  `${data.labelCard} ${data.npx}`,
60
67
  ``,
61
68
  `${chalk.italic("I am currently looking for new opportunities,")}`,
62
- `${chalk.italic("my inbox is always open. Whether you have a")}`,
69
+ `${chalk.italic("My inbox is always open. Whether you have a")}`,
63
70
  `${chalk.italic("question or just want to say hi, I will try ")}`,
64
71
  `${chalk.italic("my best to get back to you!")}`
65
72
  ].join("\n"),
package/npx.gif ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xoaryaa",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "xoaryaa": "./cli.mjs"