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

@chrjl/jsonresume-theme-elementary

v1.0.0

Published

Elementary theme for JSON Resume

Downloads

9

Readme

Elementary theme

Built from edits to the boilerplate theme.

Highlights

Uses the express-handlebars engine to render HTML. This package's render export very lightly wraps the ExpressHandlebars.renderView method.

express-handlebarsextends Handlebars with the following:

  • Add back the concept of "layout", which was removed in Express 3.x.
  • Add back the concept of "partials" via Handlebars' partials mechanism.
  • Support a directory of partials; e.g., {{> foo/bar}} which exists on the file system at views/partials/foo/bar.handlebars, by default.
  • All async and non-blocking. File system I/O is slow and servers should not be blocked from handling requests while reading from disk. I/O queuing is used to avoid doing unnecessary work.
  • Ability to easily precompile templates and partials for use on the client, enabling template sharing and reuse.

Extends the JSON Resume schema:

  • Adds a experience field to serve as an alternative to work, with functional-style resume as a use case. Shares its template with work.
  • Adds a categories property to the experience (and work), with a use case of further breaking down the functional style of resume. Copies its template from the skills field.
  • Adds a department property to work/experience fields, to extend name field.

Adds a Boolean development key to the context.

  • Templates can be modified depending on environment.

    {{#if development}}
      ... development template
    {{#else}}
      ... production template
    {{/if}}
  • Transparent <div> representing first printed page is placed above rendered resume.

Layouts

vertical-description class: heading, description, bulleted keywords/highlights. Used for projects, education, certificates, and interests

horizontal-description class: definition list. Used for skills, languages, and experience.categories

Fields not (yet) implemented:

  • [ ] awards
  • [ ] publications
  • [ ] references
  • [ ] volunteer

Development

Excerpts from jsonresume-theme-boilerplate documentation

Overview

Now that you have your boilerplate theme installed, go through a quick overview of each of the files needed for your JSONResume theme:

  • package.json: Your package.json is required by all npm packages. Everytime you want to release a new update of your theme, you'll need to update it's version number.
  • index.js: This is the file that will return the needed HTML to the theme server. The most important part of index.js is the render function. This is where all the compilation goes. This render function is expected to take a resume object (from a resume.json), and should return HTML.
  • resume.hbs: This is your actual template. This file is sent to the index.js for it to send to the theme server.
  • style.css: This is where all the CSS of your project goes. Since the index.js only returns HTML, the contents of this file are put between <style> tags in your resume.hbs file.

Deployment

If you are familar with NPM, you should be done with this in no time.

If you already have an NPM account, you can run npm login and enter your username and password. If not, you can run npm adduser and fill in the proper fields.

If you changed the dependencies or added new ones, you'll want to run npm install again, and just to make sure, run npm update to get the latest version of each dependency.

When you are done with that, you may go into your package.json, and edit the version number. When all of the above is finished, you may run npm publish to release your theme to the public. Now everyone can use your theme with their resume.

When updating your theme, you'll need to change the version number and run npm publish again.

License

Available under the Mozilla Public License