npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

yashveer

v1.0.1

Published

Interactive CLI portfolio for Yashveer Singh - browse projects and experience in the terminal

Readme

🎨 Yashveer CLI Portfolio

npm version npm downloads

An interactive terminal-based portfolio built with React and Ink. Browse experience, projects, and skills directly from your terminal.

 __   __ _    ____  _   ___     _______ _____ ____
 \ \ / // \  / ___|| | | \ \   / / ____| ____|  _ \
  \ V // _ \ \___ \| |_| |\ \ / /|  _| |  _| | |_) |
   | |/ ___ \ ___) |  _  | \ V / | |___| |___|  _ <
   |_/_/   \_\____/|_| |_|  \_/  |_____|_____|_| \_\

Features

Interactive CLI Experience

  • Navigate through sections using arrow keys and Enter
  • Animated content reveal for each section
  • Styled boxes and colored text for visual appeal

📚 Sections

  • About — Professional overview and experience summary
  • Skills — Technical toolkit (18+ technologies)
  • Work — Recent work experience and roles
  • Projects — Open-source and side projects
  • Contact — Selectable social media links (GitHub, LinkedIn, Twitter, Instagram)

⌨️ Keyboard Controls

  • Arrow keys + Enter to navigate menus
  • ESC to go back to menu
  • q to quit at any time

Installation

Global Install (Recommended)

npm install -g yashveer
yashveer

Via npx (No Install)

npx yashveer

Local Development

Clone and run locally:

git clone <repo-url>
cd yashveer-cli
npm install
npm run build
node dist/index.js

Development

Quick Start

npm install
npm run dev  # Run with live TypeScript (no rebuild)
npm run build  # Compile to dist/

Project Structure

yashveer-cli/
├── src/
│   ├── index.tsx                 # Entry point with shebang
│   ├── App.tsx                   # Main app logic and routing
│   ├── components/
│   │   ├── Header.tsx            # ASCII art + title
│   │   ├── Menu.tsx              # Main navigation menu
│   │   ├── About.tsx             # About section (animated)
│   │   ├── Skills.tsx            # Skills list (animated)
│   │   ├── Work.tsx              # Work experience (animated)
│   │   ├── Projects.tsx          # Projects showcase (animated)
│   │   └── Contact.tsx           # Social links (navigatable)
│   ├── hooks/
│   │   ├── useMenuNavigation.ts  # Keyboard input handling
│   │   └── useRevealContent.ts   # Animation reveal logic
│   └── data/
│       └── portfolio.ts          # Portfolio content (single source of truth)
├── dist/                         # Compiled output (auto-generated)
├── package.json
├── tsconfig.json
└── README.md

Key Technologies

  • Ink — React renderer for CLIs
  • React — UI component library
  • chalk — Terminal color styling
  • figlet — ASCII art text
  • TypeScript — Type-safe development
  • ink-select-input — Interactive menu selection

Editing Content

All portfolio content lives in src/data/portfolio.ts. Update:

  • Name, title, about
  • Skills array
  • Work experience array
  • Projects array
  • Social links

Then rebuild:

npm run build

Publishing to npm

Prerequisites

  1. Create an npm account at npmjs.com
  2. Log in locally:
    npm login

Publish

npm publish

After publishing, anyone can run:

npx yashveer

Update Version

Before republishing, update the version in package.json:

npm version patch   # 1.0.0 → 1.0.1
npm version minor   # 1.0.0 → 1.1.0
npm version major   # 1.0.0 → 2.0.0
npm publish

Scripts

  • npm run build — Compile TypeScript to JavaScript
  • npm run dev — Run with live TypeScript (no build step)
  • npm run prepare — Automatically runs before npm publish

Navigation

Main Menu

Use arrow keys and Enter to select:
- About
- Skills
- Work Experience
- Projects
- Contact
- Quit

In Sections

  • ESC → Back to menu
  • q → Quit app
  • Arrow keys + Enter → Select options (Contact section)

License

MIT — Feel free to fork, modify, and distribute!

Author

Yashveer Singh — Software Engineer & Frontend Specialist


Built with ❤️ using Ink and React