UNPKG

arun-yadav-resume

Version:

Arun Yadav's professional resume as an npm package - run with npx arun-yadav-resume

95 lines (80 loc) • 2.87 kB
// index.js const chalk = require('chalk'); const boxen = require('boxen'); const resume = () => { const header = chalk.white.bold('Arun Yadav'); const subHeader = chalk.gray('Frontend Developer | B.Tech CSE | MERN Stack | Cloud Enthusiast'); const contact = chalk.white(` šŸ“ Location: Meerut, INDIA šŸ“ž Phone: 911-972-9853 šŸ“§ Email: arunydv2587@gmail.com šŸ”— LinkedIn: https://linkedin.com/in/arun-yadav-fury0007 šŸ’» GitHub: https://github.com/fury2587 🌐 Portfolio: https://aruny-portfolio.netlify.app `); const experience = chalk.white(` ${chalk.yellow.bold('šŸ’¼ EXPERIENCE')} ${chalk.blue.bold('Frontend Intern')} | ${chalk.green('Syncrope')} ${chalk.gray('Jan 2025 – Apr 2025')} • Built responsive UIs with React.js, Tailwind CSS, Framer Motion & GSAP • Contributed to Dockerized microservices and AWS-based deployment `); const skills = chalk.white(` ${chalk.yellow.bold('šŸ› ļø TECHNICAL SKILLS')} • Frontend: React.js, Next.js, JavaScript, HTML/CSS • Backend: Node.js, Express.js • Databases: PostgreSQL, MongoDB • Cloud & DevOps: AWS (EC2, S3), Docker • Tools: Git & GitHub, ServiceNow, Bash/PowerShell • Other: System Design, Microservices Architecture `); const education = chalk.white(` ${chalk.yellow.bold('šŸŽ“ EDUCATION')} ${chalk.blue.bold('B.Tech in Computer Science')} CCS University | ${chalk.gray('2021–2025')} | CGPA: 7.2 ${chalk.blue.bold('Intermediate')} St. Vivekananda SR. Sec. Public School, Etawah `); const projects = chalk.white(` ${chalk.yellow.bold('šŸ“‚ KEY PROJECTS')} • ${chalk.blue.bold('Patient Management Site')}: Real-time alerts with Twilio, Appwrite backend • ${chalk.blue.bold('Brainwave')}: Modern UI/UX with React.js and Tailwind CSS • ${chalk.blue.bold('Role Based Access Control')}: Secure RBAC with React, TypeScript, Next.js `); const certifications = chalk.white(` ${chalk.yellow.bold('šŸ“œ CERTIFICATIONS')} • Goldman Sachs Software Engineering Simulation • DSA Workshop by GeeksforGeeks • Web Development Bootcamp (Udemy) `); const leadership = chalk.white(` ${chalk.yellow.bold('šŸš€ LEADERSHIP & ACTIVITIES')} • Co-Lead at Google Developer Group (Campus) • Organizer of internal college hackathon (20+ teams) `); const footer = chalk.white(` ${chalk.cyan.bold('✨ Thank you for viewing my terminal resume!')} ${chalk.gray('Run this anytime with: npx arun-yadav-resume')} `); const content = ` ${header} ${subHeader} ${contact} ${experience} ${skills} ${education} ${projects} ${certifications} ${leadership} ${footer} `; return boxen(content, { padding: 1, margin: 1, borderStyle: 'round', borderColor: 'cyan', backgroundColor: 'black' }); }; // Export the function module.exports = resume;