https://github.com/fuzziecoder/webverse
A personalized command-line business card. This innovative tool allows you to showcase your professional profile, skills, and contact information directly in the terminal. Simply run `npx [Your Package Name]` to instantly generate your customized NPX Card, providing a unique and memorable way to introduce yourself to fellow developers.
https://github.com/fuzziecoder/webverse
business-card cmd command-line introduction javascript js json nodejs npm npm-module npm-package npx-card
Last synced: 3 months ago
JSON representation
A personalized command-line business card. This innovative tool allows you to showcase your professional profile, skills, and contact information directly in the terminal. Simply run `npx [Your Package Name]` to instantly generate your customized NPX Card, providing a unique and memorable way to introduce yourself to fellow developers.
- Host: GitHub
- URL: https://github.com/fuzziecoder/webverse
- Owner: fuzziecoder
- License: mit
- Created: 2025-04-12T05:58:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-12T07:31:12.000Z (6 months ago)
- Last Synced: 2025-06-09T13:40:04.137Z (4 months ago)
- Topics: business-card, cmd, command-line, introduction, javascript, js, json, nodejs, npm, npm-module, npm-package, npx-card
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/webuniverse
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 'webverse' in your terminal
## Create your personalized NPX introduction card### Step 1: Select a Unique Package Name
Choose a distinctive name for your package, as it will be the identifier for invoking your introduction command using `npx`.
### Step 2: Establish a New Directory
Create a fresh directory for your package, naming it after the chosen package name.
```bash
mkdir npx-username
cd npx-username
```### Step 3: Initialize Your Package
Initialize your project as a Node.js package using the command:
```bash
npm init -y
```### Step 4: Develop an Executable Script
Within your project directory, create a JavaScript file named `index.js` and store it in a folder named `bin`. This file will function as the executable script for your npx command.
Ensure to specify the `bin` field in `package.json`:
```json
"bin": {
"username": "./bin/index.js"
}
```**Ensuring Script Execution Capability:**
To enable script execution, follow these steps:
For Mac/Linux:
```bash
chmod +x bin/index.js
```For Windows:
```bash
git update-index --chmod=+x bin/index.js
```### Step 5: Add your script to execute and display in terminal
Execute your script with the following command:
```bash
node bin/index.js
```### Step 6: Publish the package
Once your script runs successfully, publish the package:
**1. Log in to npm:**
```bash
npm adduser
```**2. After logging in, return to the terminal and run:**
```bash
npm publish
```### Step 7: Execute Your NPX Command
Once the package is published, run your npx command:
```bash
npx username
```Follow these steps to create your personalized NPX introduction command and share it with others!
***Happy coding! 🚀***