JSPM

ashish-bagdane

2.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q28439F
  • License MIT

Ashish Bagdane's Premium Cyberpunk CLI Resume with Advanced Animations

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ashish-bagdane) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Cyberpunk CLI Resume

    npm version License: MIT Node.js Version PRs Welcome

    A high-tech, cyberpunk-themed CLI resume with stunning visual effects and animations running directly in your terminal. This interactive resume presents professional information with a futuristic cyberpunk aesthetic, complete with matrix effects, glitch animations, and an immersive interface.

    Cyberpunk Resume Demo

    📋 Table of Contents

    🚀 Quick Start

    # Run via npx (no installation required)
    npx ashish-bagdane
    
    # For faster animations
    npx ashish-bagdane --fast
    
    # For low-resource environments
    npx ashish-bagdane --minimal

    ✨ Features

    • ⚡ Matrix-style rain animation intro
    • 💻 Animated ASCII name display
    • 🔷 Typewriter text effects
    • 🌈 Gradient color schemes and custom Unicode characters
    • 🖼️ Perfectly centered boxes with cyberpunk borders
    • 🎭 Glitch text effects
    • 🚀 Dynamic loading animations
    • ⏱️ Multiple speed modes (normal, fast, minimal)
    • 📱 Responsive to terminal size

    📥 Installation

    The easiest way to view this resume is by using npx:

    npx ashish-bagdane

    Installing globally

    npm install -g ashish-bagdane

    Then run:

    ashish-bagdane

    Local installation

    # Clone the repository
    git clone https://github.com/ashish-bagdane/cli-resume.git
    
    # Navigate to the project directory
    cd cli-resume
    
    # Install dependencies
    npm install
    
    # Run the resume
    npm start

    🎮 Usage

    Command-line options

    # Run with normal animations
    ashish-bagdane
    
    # Run with faster animations
    ashish-bagdane --fast
    
    # Run with minimal animations (for low-resource environments)
    ashish-bagdane --minimal
    
    # Skip the matrix rain animation
    ashish-bagdane --noMatrix
    
    # Run in development mode with debug information
    ashish-bagdane --dev

    Keyboard Controls

    While the resume is running:

    • Press any key to exit at the end
    • Ctrl+C to exit at any time

    🏗️ Project Structure

    The project is organized into modular components for better maintainability:

    cyberpunk-resume/
    ├── bin/
    │   └── cli.js              # CLI entry point
    ├── src/
    │   ├── config/
    │   │   ├── theme.js        # Colors, icons, borders
    │   │   └── resumeData.js   # Resume data
    │   ├── utils/
    │   │   └── helpers.js      # Utility functions
    │   ├── animations/
    │   │   ├── index.js        # Exports all animations
    │   │   ├── boot.js         # Boot sequence animations
    │   │   ├── matrix.js       # Matrix rain effect
    │   │   ├── text.js         # Text animations (typewriter, glitch)
    │   │   └── box.js          # Box animations
    │   ├── components/
    │   │   ├── index.js        # Exports all components
    │   │   ├── header.js       # Header/name display
    │   │   ├── contact.js      # Contact information
    │   │   ├── profile.js      # Profile summary
    │   │   ├── skills.js       # Technical skills
    │   │   ├── experience.js   # Work experience
    │   │   ├── education.js    # Education
    │   │   └── footer.js       # Footer component
    │   └── app.js              # Main application logic
    ├── package.json
    └── README.md

    🎨 Customization

    Creating your own CLI resume

    1. Fork this repository
    2. Update src/config/resumeData.js with your personal information
    3. Modify the theme in src/config/theme.js to change colors, icons, or borders
    4. Customize animations or components as needed
    5. Update the package.json with your information
    6. Publish to npm (optional)

    Customization Code Examples

    Changing Colors

    // src/config/theme.js
    export const colors = {
      electricBlue: "#0ff0fc", // Change to your preferred blue
      neonPink: "#ff2a6d", // Change to your preferred pink
      neonPurple: "#d300c5", // Change to your preferred purple
      matteBlack: "#121212", // Change background color
      cyborgGreen: "#05ffa1", // Change to your preferred green
      // Add more colors as needed
    };

    Updating Resume Data

    // src/config/resumeData.js
    export const resumeData = {
      name: "YOUR NAME",
      title: "Your Title | Your Position | Your Specialty",
      location: "Your Location",
      contact: {
        linkedin: "www.linkedin.com/in/yourprofile",
        portfolio: "yourwebsite.com",
      },
      // Add more sections as needed
    };

    Customizing Icons

    // src/config/theme.js
    export const icons = {
      contact: "✧", // Change to preferred icon
      email: "✉", // Change to preferred icon
      phone: "☏", // Change to preferred icon
      web: "⌘", // Change to preferred icon
      linkedin: "⚯", // Change to preferred icon
      // Add more icons as needed
    };

    💻 Terminal Compatibility

    For the best experience, use one of these terminals:

    Terminal OS Notes
    iTerm2 macOS Best overall experience, true color support
    Windows Terminal Windows Excellent for Windows users, true color support
    Hyper Cross-platform Great compatibility, customizable
    Gnome Terminal Linux Good support for animations
    Konsole Linux Good compatibility
    Terminal.app macOS Basic support, limited colors
    VS Code Integrated Terminal Cross-platform Good compatibility

    Note: For optimal viewing, use a terminal that supports ANSI color codes and Unicode characters.

    ⚡ Performance Tips

    1. For lower-end machines, use the --minimal flag to reduce animations:

      ashish-bagdane --minimal
    2. For slightly faster performance without losing all animations, use:

      ashish-bagdane --fast
    3. Skip the matrix animation if it runs too slowly:

      ashish-bagdane --noMatrix
    4. Terminal size matters: Performance may vary in very large or very small terminals.

    5. Running in VS Code: Terminal performance in VS Code can be slower - consider using a native terminal app instead.

    🔧 Troubleshooting

    Common Issues

    Issue Solution
    Box alignment issues Try adjusting your terminal window size or font
    Garbled text or missing characters Ensure your terminal supports Unicode and ANSI colors
    Slow performance Use --fast or --minimal mode
    Animation glitches Some terminals may not fully support all animations - try another terminal
    Black/blank screen Press Ctrl+C and try running with --minimal flag

    Debug Mode

    If you're experiencing issues, run in debug mode to get more information:

    ashish-bagdane --dev

    🔍 Technical Implementation

    This project uses:

    • chalk: Terminal string styling
    • boxen: Create boxes in the terminal
    • figlet: ASCII art from text
    • gradient-string: Create color gradients in the terminal
    • ora: Elegant terminal spinners
    • cli-spinners: Collection of spinners for terminal
    • term-size: Reliably get terminal size
    • commander: Command-line interface

    Animation Techniques

    • Typewriter effect: Character-by-character text reveal
    • Box animations: Line-by-line rendering of centered boxes
    • Matrix rain: Custom terminal position-based animation
    • Section fade-in: Spinner-based section introduction

    🤝 Contributing

    Contributions are welcome! Here's how you can help:

    1. Fork the repository
    2. Create a feature branch: git checkout -b feature/amazing-feature
    3. Commit your changes: git commit -m 'Add some amazing feature'
    4. Push to the branch: git push origin feature/amazing-feature
    5. Open a pull request

    Development Setup

    # Clone your fork
    git clone https://github.com/YOUR_USERNAME/cli-resume.git
    
    # Install dependencies
    npm install
    
    # Run in development mode
    npm run dev

    Please see CONTRIBUTING.md for more details.

    ❓ FAQ

    Can I use this for my own resume?

    Yes! Fork the repository, update the resume data, and make it your own.

    How do I publish my resume to npm?

    First, create an npm account, then:

    # Update package.json with your details
    # Then login to npm
    npm login
    
    # Publish your package
    npm publish

    Will this work on Windows?

    Yes, though some animations may display differently. Use Windows Terminal for best results.

    Can I add more sections to the resume?

    Yes, you'll need to:

    1. Update resumeData.js with new sections
    2. Create new component files in src/components/
    3. Update app.js to include your new components

    How can I change the font or ASCII art style?

    The ASCII name is generated using Figlet. Change the font in header.js by modifying the font parameter in the typewriterName function. See Figlet fonts for options.

    📝 Changelog

    v2.0.0 (2024-03-04)

    • Initial release
    • Matrix animation and cyberpunk theme
    • Full resume display with animations

    v1.0.0 (2024-03-04)

    • Pre-release with core functionality
    • Basic animations and styling

    🔒 Requirements

    • Node.js ≥ 18
    • Terminal with ANSI color support
    • Monospaced font for best display

    👏 Credits

    • Created by Ashish Bagdane
    • Inspired by cyberpunk aesthetics and terminal art
    • Special thanks to all open-source libraries used in this project

    📄 License

    MIT License - see LICENSE file for details.