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

@sanskarpan/latexy

v1.0.2

Published

Terminal UI for Latexy — LaTeX resume compilation, ATS scoring, and AI optimization in your terminal

Readme

Latexy TUI

LaTeX resume compilation, ATS scoring, and AI optimization — right in your terminal.

Install

npm install -g latexy
# or
pnpm add -g latexy

Quick start

latexy                                         # interactive mode
latexy compile my-resume.tex                   # compile a local .tex file
latexy compile --resume-id <uuid>              # compile by resume ID
latexy compile --resume-id <uuid> --output out.pdf

Authentication

In interactive mode, run /login to open the sign-in overlay.

For CI / headless use, set the LATEXY_SESSION_TOKEN env var:

LATEXY_SESSION_TOKEN=<token> latexy compile --resume-id <uuid> --json

Available Commands

| Command | Description | Type | |---------|-------------|------| | /compile | Compile selected resume to PDF | api | | /optimize | AI-optimize resume for a job | api | | /combined | Optimize + compile in one job | api | | /ats | Run ATS deep analysis | api | | /quick-ats | Fast rule-based ATS (no LLM) | api | | /list | Open resume picker | local | | /new | Create new resume | api | | /edit | Open resume in $EDITOR | api | | /fork | Fork resume into a variant | api | | /pdf | Download and open last PDF | api | | /log | View full pdflatex log | api | | /cancel | Cancel running job | api | | /jobs | Open job monitor overlay | local | | /byok | Manage BYOK API keys | local | | /analytics | View personal analytics | api | | /billing | View subscription and billing | local | | /tracker | Open job application tracker | local | | /cover | Generate cover letter | api | | /interview | Generate interview questions | api | | /health | Show backend health status | api | | /history | Show optimization history | api | | /checkpoint | Create named checkpoint | api | | /restore | Restore to a checkpoint | local | | /diff | Show diff with parent variant | api | | /export | Export resume to another format | api | | /share | Generate and copy share link | api | | /snippets | Browse snippet marketplace | local | | /settings | Open notification settings | local | | /help | Show help | local | | /model | Open model picker for agent mode | local | | /clear | Clear transcript | local | | /logout | Clear session and exit | local |

CI / Headless mode

When stdout is not a TTY (CI pipelines, scripts), Latexy runs in headless mode and outputs JSON:

latexy compile --resume-id <uuid> --json
# → { "success": true, "pages": 2, "size_bytes": 45123, "ats_score": 84 }

Exit codes:

| Code | Meaning | |------|---------| | 0 | Success | | 1 | Compilation failed | | 2 | Not authenticated | | 3 | Unknown subcommand / invalid args |

Configuration

Config file: ~/.config/latexy/config.toml

backendUrl = "https://api.latexy.com"
defaultResumeId = "uuid-of-your-default-resume"

Environment variable overrides:

| Variable | Description | |----------|-------------| | LATEXY_API_URL | Backend URL | | LATEXY_SESSION_TOKEN | Auth token (skips interactive login) |

Requirements