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

@apijolt/cli

v1.0.0

Published

CLI for APIJolt — convert documents to PDF from the command line

Readme

@getapijolt/cli

Command-line tool for APIJolt — convert any document to PDF without leaving your terminal.

Install

npm install -g @getapijolt/cli

Or use without installing:

npx @getapijolt/cli <command>

Quick start

# Create a free account (1,000 conversions/month)
apijolt register

# Convert files
apijolt convert report.docx
apijolt convert slides.pptx --output slides.pdf
apijolt convert README.md --theme github
apijolt convert https://example.com

# Convert HTML inline
apijolt html "<h1>Hello world</h1>" --format Letter

# Check usage
apijolt usage

Setup

Register

apijolt register
# Interactive: enter email, password, name
# Your API key is displayed and optionally saved to ~/.apijolt

Use an existing key

apijolt login
# Paste your key — saved to ~/.apijolt (chmod 600)

Via environment variable

export APIJOLT_API_KEY=aj_live_...
apijolt convert file.docx

Commands

convert <file|url> — convert anything to PDF

apijolt convert report.docx
apijolt convert spreadsheet.xlsx -o out.pdf
apijolt convert presentation.pptx --landscape
apijolt convert README.md --theme minimal --font-size 12
apijolt convert https://example.com -o page.pdf

| Flag | Short | Description | |------|-------|-------------| | --output <path> | -o | Output PDF path (default: <input>.pdf or output.pdf) | | --format <fmt> | -f | Page format: A4, A3, A5, Letter, Legal (default: A4) | | --landscape | -l | Landscape orientation | | --theme <name> | -t | Markdown theme: default, github, minimal | | --font-size <n> | | Markdown base font size in pt (default: 14) |

Supported formats: .md .markdown .doc .docx .odt .rtf .xls .xlsx .ods .csv .ppt .pptx .odp .jpg .png .webp .gif .bmp .tiff and URLs.


html "<html>" — convert HTML string

apijolt html "<h1>Hello</h1><p>World</p>"
apijolt html "<table>...</table>" --format Letter --landscape -o table.pdf

usage — show monthly quota

apijolt usage

Plan:     free
Usage:    47 / 1000  (4.7%)
          [██░░░░░░░░░░░░░░░░░░]
Remaining: 953 calls

Key management

apijolt keys                    # list all keys
apijolt keys:create             # create new key
apijolt keys:create --label "Production"
apijolt keys:revoke aj_live_abc1...
apijolt keys:rotate aj_live_abc1...   # atomic revoke + reissue

Markdown themes

| Theme | Description | |-------|-------------| | default | Light mode, GitHub-style sans-serif | | github | Dark mode | | minimal | Serif/print-friendly |


Environment variables

| Variable | Description | |----------|-------------| | APIJOLT_API_KEY | API key (overrides ~/.apijolt) | | APIJOLT_API_URL | Override API URL (staging/self-hosted) |


License

MIT