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-bold-header-statement-printable

v1.0.5

Published

Magazine-inspired layout with commanding header and confident personal brand aesthetic in a more printable friendly sizing

Downloads

534

Readme

JSON Resume Theme: Bold Header Statement Printable

A compact, print-oriented JSON Resume theme with a strong teal header, restrained section styling, and dense content blocks for multi-page resumes.

The renderer returns a complete HTML document. It is published as an ESM package and exposes a named render export.

Install

npm install jsonresume-theme-bold-header-statement-printable

react and react-dom are peer dependencies. Install them in the application that renders the resume when they are not already present.

Render a Resume

Pass a JSON Resume object to render and write the returned HTML to a file:

import { writeFile } from 'node:fs/promises';
import { render } from 'jsonresume-theme-bold-header-statement-printable';
import resume from './resume.json' with { type: 'json' };

const html = render(resume);
await writeFile('resume.html', html);

Open resume.html in a browser or print it to PDF. The theme loads the Outfit font from Google Fonts; the browser needs network access for that font unless it is already cached.

Print Layout

The theme is designed for compact printing:

  • Print margins are set to 0.5in.
  • Content blocks use tighter vertical padding while preserving their horizontal padding.
  • Work, education, project, volunteer, award, certificate, publication, and reference blocks request that browsers keep each block on one page.
  • Section headings request that they remain with the content that follows.

Page-break behavior ultimately depends on the browser or PDF renderer. A block taller than the printable area cannot be kept on a single page.

Supported Sections

The following JSON Resume fields are rendered when present:

  • basics: name, label, contact details, profiles, and summary
  • work
  • skills
  • education
  • projects
  • volunteer
  • awards
  • certificates
  • publications
  • languages
  • references

The package does not render sections that are not listed above, such as interests.

Development

npm install
npm run build

The build produces the distributable ESM module at dist/index.js.

License

MIT