Your terminal just got cooler — run
npx vishnupriyanand unlock a custom, fast, and interactive experience from the creator himself. Built for devs, learners, and curious minds.
vishnu-cli-npx is a personal, zero-install, command-line tool that shows you:
- 📄 A short and clean intro to Vishnupriyan
- 🌐 Links to his projects, socials, and portfolio
- 💡 Quick access to his developer profile, skills, and interests
- 🔗 All directly inside your terminal, in under 2 seconds
It's like a digital business card — but geeked up for developers 😎
npx vishnupriyanYup. That’s it.
Nogit clone, nonpm install.
Just one command — works on any system with Node.js installed.
- 🔍 Curious about Vishnupriyan? Just type
npx vishnupriyan - 🤝 Hiring or collaborating? Get a fast overview from your terminal
- 💼 Want inspiration for your own personal CLI card? Clone this repo!
- 🧑💻 Developer bio & background
- 🔗 Clickable links to GitHub, LinkedIn, projects, and more
- 🎨 Clean, stylized terminal output
- 🪄 Instant usage with NPX (no global installs)
- 📦 Open source — fork & make your own!
- npx card – The original CLI card concept
- create-github-profile-cli – Interactive profile CLI
- business-card – Terminal-based business card
npx vishnupriyan💥 Experience a fast, fun, and minimal terminal-based profile card.
Go ahead and give it a shot — you're just one command away!
Want a CLI like this for yourself?
Here’s how to customize it:
# 1. Fork or clone this repo
git clone https://github.com/vishnupriyanv/vishnu-cli-npx.git
# 2. Move into the project folder
cd vishnu-cli-npx
# 3. Open the main CLI file (usually cli.js or index.js)
code cli.js🔧 Inside cli.js, look for the section where info is printed, and update it like this:
#!/usr/bin/env node
console.log(`
👋 Hey there! I'm [Your Name]
🌐 Portfolio: https://yourwebsite.com
💼 GitHub: https://github.com/yourusername
🔗 LinkedIn: https://linkedin.com/in/yourprofile
Thanks for checking out my CLI card!
`);# 4. Update package.json fields:
# - name
# - version
# - description
# - author
# - bin
code package.json{
"name": "your-cli-name",
"version": "1.0.0",
"description": "Your awesome CLI card",
"author": "Your Name",
"bin": {
"your-cli-name": "./cli.js"
}
}# 5. Publish to NPM (once your account is set up)
npm login
npm publish✅ Now run it from anywhere using:
npx your-cli-nameMIT — use it, modify it, share it. Just don’t forget to drop a ⭐!