UNPKG

ayush-cli

Version:

A stylish CLI to showcase Ayush Sharma's portfolio, projects, skills, and achievements.

63 lines (51 loc) • 2.05 kB
#!/usr/bin/env node import chalk from "chalk"; import gradient from "gradient-string"; import figlet from "figlet"; console.clear(); figlet("Ayush Sharma", (err, data) => { if (err) { console.log("Something went wrong..."); console.dir(err); return; } console.log(gradient.pastel.multiline(data)); // Soft pastel gradient banner console.log(` ${chalk.bold.blue("šŸ“ž Phone")}: +91-9548398538 ${chalk.bold.blue("āœ‰ļø Email")}: connect@ayush-sharma.in ${chalk.bold.blue("🌐 Portfolio")}: https://ayush-sharma.in ${chalk.bold.blue("šŸ™ GitHub")}: https://github.com/cyberboyayush ${chalk.bold.blue("🧠 LeetCode")}: https://leetcode.com/cyberboyayush ${chalk.bold.blue("šŸ“ Location")}: Jaipur, India `); console.log(chalk.magenta.bold("\nšŸŽ“ EDUCATION")); console.log(` - Manipal University Jaipur B.Tech in Computer Science (IoT & IS) (2023–2027) `); console.log(chalk.cyan.bold("\nšŸ’» PROJECTS")); console.log(` ${chalk.bold("Effisense")} šŸ”— Live: ${chalk.underline.blue('https://effisense.ayush-sharma.in')} šŸ› ļø GitHub: ${chalk.underline.blue('https://github.com/cyberboyayush/effisense')} ${chalk.bold("PathGenie")} šŸ”— Live: ${chalk.underline.blue('https://pathgenie.ayush-sharma.in')} šŸ› ļø GitHub: ${chalk.underline.blue('https://github.com/glucon-d/pathgenie')} ${chalk.bold("PortDev")} šŸ”— Live: ${chalk.underline.blue('https://portdev.ayush-sharma.in')} šŸ› ļø GitHub: ${chalk.underline.blue('https://github.com/cyberboyayush/portdev')} ${chalk.bold("FinWise")} šŸ”— Live: ${chalk.underline.blue('https://finwise.ayush-sharma.in')} šŸ› ļø GitHub: ${chalk.underline.blue('https://github.com/glucon-d/finwise')} `); console.log(chalk.yellow.bold("\nšŸ† ACHIEVEMENTS")); console.log(` - šŸ„‡ Winner, HackerzStreet Hackathon 2025 (Team Leader) - 🧠 Solved 500+ DSA Problems on LeetCode `); console.log(chalk.green.bold("\nšŸ›  SKILLS")); console.log(` - MERN Stack, Next.js, Appwrite, Firebase, Tailwind CSS - C++, Java, DSA, Problem Solving `); });