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 🙏

© 2025 – Pkg Stats / Ryan Hefner

jsonresume-theme-kendall-modern

v0.1.6

Published

A JSON Resume theme built with bootstrap

Downloads

5

Readme

jsonresume-theme-kendall-herink

A theme for the JSONResume schema, that relies on Bootstrap and FontAwesome, and slightly modified from the superb, original JSONResume theme "Kendall".

I have made two large changes to the "Kendall" theme:

  1. Removal of the profile picture
  2. Improvement of the projects section
  3. Changed colors to be more "dark mode"

You can view my resume, which uses this theme, here: danielherink.com.

NOTE: This supports schema 1.0.0.

Typical Work-Flow

Install resumed

To first use this theme, you will need to install the resumed CLI tool. This is an alternative to the official JSONResume CLI tool that is a more modern implementation of the original tool. I prefer it to the JSONResume CLI tool.

Install resumed and this theme with:

npm install resumed jsonresume-theme-kendall-herink

Put Together Your JSON Resume

In order to generate an HTML page of your JSON resume, you will of course need your resume info plugged into the proper schema. Refer to the JSONResume repo for more information. You can also call (this assumes that resumed is installed in a local location):

/path/to/resumed/bin/resume.js init my-resume.json

This will create a JSON resume named "my-resume.json" with a number of fields filled out with generic information. You can use this to replace those default JSON values with your own resume details.

Use Theme with resumed to Generate HTML

The handy feature of resumed is that when you install it with a theme, it will always default to that theme. All that is required is to call:

/path/to/resumed/bin/resume.js render my-resume.json -o my-resume.html

This will take your filled-in "my-resume.json" and create the HTML form of the resume named "my-resume.html", using this theme (assuming you installed resumed as detailed above).

Refer to resumed for the full documentation on its usage.

Bonus: Render PDF from HTML

After creating or updating your JSON resume and generating the HTML page from it, the next step is to get a PDF of your resume. For this last step, I use Docker (or podman, if you're familiar with it) to use a headless Chrome browser to print the HTML page to a PDF file.

To generate a slick-looking PDF, with no margins, and limited to one page, I use the docker call:

docker run -v "/path/to/jsomeresume/folder:/workspace" pink33n/html-to-pdf --url http://localhost/my-resume.html --pdf my-resume.pdf --no-margins --page-ranges 1

This will create a PDF version of your resume named "my-resume.pdf" in the same folder as the "my-resume.html" file. You can drop the --page-ranges 1 in order to allow for multiple pages for your resume PDF.

Refer to the pink33n/docker-html-to-pdf for full documentation.

Why the Changes?

Alhtough I made the two changes mentioned at the top, I believe my changes maintain the elegance of the original theme. The reasons I wanted to make my changes are:

  1. Removal of the profile picture

    Since I work in the U.S., I don't have a need for including a picture with my resume. I understand this is required in Europe, but isn't in the U.S. so I wanted to remove it. Removing the profile picture required changing some of the CSS so that the resulting HTML page looked good again.

  2. Improving the projects section

    Although the original "Kendall" theme is sublime, I wanted to have a more detailed section for my project(s). I changed the projects section to resemble the work section in both the JavaScript and Mustache portions of the theme.

  3. Changed the colors

    I also wanted to modify the colors so they were more "dark theme" and I went with greener colors over the blue colors found in the original theme