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

jsonresume-theme-minimal-classy

v0.1.2

Published

Minimal Classy Theme for JSON Resume

Readme

Minimal Classy Theme for JSON Resume

A minimalist theme for JSON Resume which a fork from JSON Resume Class Theme and a port from the fantastic Minimal Latex CV design. The content of the résumé can work offline and can be hosted without depending on or making requests to third-party servers.

Usage

# Install resumed via npm, yarn, pnpm, or whatever package manager you want
npm install --global resumed jsonresume-theme-minimal-classy

# Export as an HTML page, ready to be served by any web server
resumed render ./resume.json --theme jsonresume-theme-minimal-classy

# Export a PDF document, it's recommended to use your name as the file name
resumed export ./resume.json --theme jsonresume-theme-minimal-classy

Accessibility

It's recommended to declare the meta.language property in your JSON Resume for accessibility. This is the BCP47 tag for the language your résumé is written in. For example, en for English.

For Servers

Heads-up! ⚠️ This project doesn't sanitize the input/output. Typical usage is to run this locally with your own JSON Resume, so a trustworthy environment with trustworthy input. If this project will be deployed in a server environment, you must use a library like DOMPurify to sanitize the output.

Configuration

You can configure the theme by adding a meta object to your resume.json. The following options are supported:

| Option | Type | Description | |--------|------|-------------| | language | string | The BCP47 tag for the language of the résumé (e.g., en, es). Used for accessibility and localizing date formats. | | logo | string | Path or URL to a logo image to display at the top of the résumé. | | labelUnderLogo | boolean | If true, moves the label (job title) to be displayed under the logo instead of under the name. | | hideName | boolean | If true, hides the name from the header. Useful if the logo already contains the name. | | disableImageStyling | boolean | If true, removes the default circular mask and grayscale filter from the profile image. | | selfContainedImages | boolean | If true, remote images (URLs) are downloaded and embedded as Base64 strings in the HTML output. Local images are always embedded. | | customStyles | string | Custom CSS to inject into the <head> of the document. |

Example

"meta": {
  "language": "en",
  "selfContainedImages": true,
  "hideName": true,
  "logo": "./test/logo.svg",
  "labelUnderLogo": true,
  "disableImageStyling": false,
  "customStyles": ".label-text { letter-spacing: 5px; margin: -10px 0 0 0; }"
}

Features

JSON Resume 1.0.0

This supports the JSON Resume 1.0.0 spec.

Highly Configurable

This theme offers extensive configuration options via the meta object, allowing you to:

  • Toggle image styling (circle mask, grayscale)
  • Hide the name if included in a logo
  • Position the label/title
  • Inject custom CSS for fine-grained control
  • Embed remote images for offline usage

Markdown

You can use Markdown in the following properties to make text bold, italic, or link them to external pages:

  • summary
  • highlights

Extended References

You can add contact details to your references. This theme supports email, phone, and url fields in the references objects. You can see fixture.resume.json for reference.

Localized

Using the same meta.language property referred to in Accessibility, you can configure the language of the template too. For example, if you write your résumé in Dutch, the output will have Dutch headings.

Open Graph Protocol

Populates the head of the HTML document with Open Graph tags. This enables social media platforms and instant messengers to create embeds when your résumé is shared.

Optimized

This theme makes no external connections, doesn't embed scripts, and is lightweight by design. Both HTML and PDF exports are minimal. External images accessed via HTTPS, can be embedded in the document automatically with the corresponding meta option.

Preview