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-docx

v0.1.0

Published

Generate a Word (.docx) document from a JSON Resume file. The missing DOCX exporter for the JSON Resume ecosystem.

Downloads

21

Readme

jsonresume-docx

Generate a Word (.docx) document from a JSON Resume file.

The JSON Resume ecosystem has great HTML themes and PDF export via resumed. DOCX was the missing piece. This fills that gap.

npm version license


Install

# CLI (global)
npm install -g jsonresume-docx

# Programmatic use (local)
npm install jsonresume-docx

CLI

# Uses resume.json → resume.docx by default
jsonresume-docx

# Custom input / output
jsonresume-docx --input my-resume.json --output my-resume.docx

# Help
jsonresume-docx --help

Programmatic API

const { generate, generateFile } = require('jsonresume-docx');

// Returns a Buffer — pipe it, upload it, do what you like
const buffer = await generate(resumeObject);

// Write directly to disk
await generateFile(resumeObject, './my-resume.docx');

Schema coverage

Full coverage of the JSON Resume schema. Every section is rendered if present — nothing is silently dropped. Sections are omitted cleanly when not supplied, so a minimal file works just as well as a fully loaded one.

| Section | Fields rendered | |---|---| | basics | name, label, summary, email, phone, location (city/region), url | | basics.profiles | LinkedIn shown inline; all other networks listed separately | | work | position, company, dates, highlights (falls back to summary if no highlights) | | volunteer | position, organisation, dates, highlights | | education | qualification, institution, dates, grade/score, courses | | projects | name, url, dates, description, highlights | | skills | name, level, keywords | | certificates | name, issuer, date, url | | awards | title, awarder, date, summary | | publications | name, publisher, date, url, summary | | languages | language, fluency | | interests | name, keywords | | references | name, quoted reference text |

Custom extension fields

These non-standard fields are used by the jsonresume-theme-craftedbycode-* HTML themes. They are entirely optional — standard JSON Resume files work without them.

| Extension field | Rendered as | |---|---| | stack | Subtitle line under name in header | | industries | Industry list under Skills | | strengths | "What I Bring" section | | learning | "Currently" / learning section |


Use with resumed (HTML + DOCX from one file)

Pair this tool with resumed to get both an HTML page and a Word document from the same resume.json:

npm install -g resumed jsonresume-docx

# Pick any JSON Resume HTML theme
npm install -g jsonresume-theme-even

# Render HTML
resumed render resume.json --theme jsonresume-theme-even --output resume.html

# Generate DOCX
jsonresume-docx --input resume.json --output resume.docx

Example

See examples/jane-dodds.json for a fully-populated JSON Resume file covering every section.


Attribution


Licence

MIT — see LICENSE.
Issues and PRs welcome at github.com/shanekingsley/jsonresume-docx.