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

cvault

v1.0.0

Published

A CLI tool for creating clean and minimalist resumes from YAML files. Customizable, versionable.

Readme

Cvault

npm version License: MIT TypeScript Node.js Tests Code Style: Prettier

I don't always need a PDF resume, but I never have a Vim-ready one when I do (lol). YAML > MS Word.

📦 Installation

# Install globally
npm install -g cvault

# Or use with npx (no installation required)
npx cvault build my-resume.yaml -p my-resume.pdf

🚀 Quick Start

  1. Copy one of the sample templates from the repository
  2. Edit your resume YAML file with your information
  3. Generate HTML and PDF cvault build my-resume.yaml -p my-resume.pdf
  4. Save your YAML resume into a Git repo and try to stop losing it!

📄 Templates & Customization

You can find sample YAML models under static/templates/ covering different styles and audiences.

| Minimalist Software Engineer | Modern Systems Architect | Creative Brand Strategist | Applied ML Lead | | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------- | ----------------------------------------------------- |

  1. Minimalist Software Engineer – Feature-rich baseline with every customization enabled.
  2. Modern Systems Architect – Sleek platform-engineering layout with compact spacing and inline contact header.
  3. Creative Brand Strategist – Expressive creative profile with stacked contact info and outlined badges.
  4. Applied ML Lead – Research-forward leadership résumé using link-style badges and dense line spacing.

See the Customization Guide for complete reference on all styling options, including page breaks, line spacing, etc.

Advanced Options

# Choose paper format (A4 or Letter)
cvault build resume.yaml -p resume.pdf --format Letter

# Disable background colors (for printing)
cvault build resume.yaml -p resume.pdf --no-background

# Specify custom output paths
cvault build resume.yaml -h output/resume.html -p output/resume.pdf

# Select a template
cvault build resume.yaml -p resume.pdf --template compact

# Generate only HTML (no PDF) - advanced use case
cvault html resume.yaml -o resume.html

# Convert existing HTML to PDF - advanced use case
cvault pdf resume.html -o resume.pdf --format Letter

💻 Development

Setup

# 1. Clone the repository
git clone https://github.com/ericmiguel/cvault.git && cd cvault

# 2. Install dependencies
npm install

# 3. Copy one of the sample templates
cp static/templates/minimalist-software-engineer.yaml my-resume.yaml

# 4. Generate HTML and PDF
npm run dev -- build my-resume.yaml -p my-resume.pdf

Scripts

# Build
npm run build                                             # Compile TypeScript and copy assets

# Development
npm run dev -- build my-resume.yaml -p my-resume.pdf      # Run CLI in dev mode
npm run generate:all                                      # Generate all template examples (HTML + PDF)
npm run generate:all:pdf                                  # Generate only PDFs for all templates
npm run generate:all:html                                 # Generate only HTML files for all templates
npm run generate:previews                                 # Refresh README preview images

# Code Quality
npm run check                                             # Run all checks (format, lint, type-check)
npm run format                                            # Format code with Prettier
npm run format:check                                      # Check code formatting
npm run lint                                              # Lint code with ESLint
npm run lint:fix                                          # Auto-fix linting issues
npm run type-check                                        # TypeScript type checking

# Tests
npm test                                                  # Run all tests once
npm run test:watch                                        # Run tests in watch mode
npm run test:ui                                           # Run tests with UI
npm run test:coverage                                     # Run tests with coverage report

🤝 Contributing

Feel free to open issues or pull requests with improvements!