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

@office-open/docx

v0.14.6

Published

AI-native Word (.docx) generation, parsing, and patching from plain JSON — fully typed TypeScript, 100% OOXML coverage, no Microsoft Office required

Readme

@office-open/docx

npm version npm downloads npm license

Create Word documents (.docx) in TypeScript and JavaScript — generate, parse, and patch from plain JSON, no Microsoft Office required. Built for AI agents and hand-written code alike; runs in Node.js, browsers, Deno, and Bun.

Features

  • 📄 Document Generation — Create Word documents with sections, headers, footers, and page numbers
  • ✍️ Paragraphs & Text — Rich text support with bold, italic, underline, strikethrough, and more
  • 📊 Tables — Full table support with merged cells, borders, and styles
  • 🖼️ Images — Inline and floating images with sizing, positioning, and wrapping
  • 🔗 Hyperlinks — External and internal hyperlinks with custom styling
  • 📑 Headers & Footers — First, last, even/odd page headers and footers
  • 📋 Lists — Numbered and bulleted lists with multiple levels and custom formats
  • 🎨 Styles — Paragraph, character, and table styles with inheritance
  • 📖 Table of Contents — Auto-generated table of contents with custom styling
  • 📝 Footnotes & Endnotes — Comprehensive footnote and endnote support
  • 📈 Charts — Bar, line, pie, area, and scatter charts with customization
  • 🔢 Math Equations — Full mathematical equation support via Office MathML (OMML)
  • 🧩 SmartArt — Built-in SmartArt graphic generation
  • 📚 Bibliography — Source management and citation support
  • 💬 Comments — Document comments with author and date tracking
  • 📝 Track Revisions — Insertions, deletions, and formatting changes
  • 📋 Content Controls — Structured document tags (SDT) for form-like documents
  • 📦 Text Boxes — Floating text boxes with content and styling
  • ☑️ Checkboxes — Form checkbox support in documents
  • 🖌️ DrawingML — Shapes with fills, shadows, effects, and transformations
  • 🔤 Custom Fonts — Font embedding and custom font tables
  • 🔧 Template Patching — Patch existing DOCX templates via placeholder replacement
  • ⚙️ Settings — Comprehensive document settings and compatibility options

Installation

# pnpm
pnpm add @office-open/docx

# npm
npm install @office-open/docx

# yarn
yarn add @office-open/docx

# bun
bun add @office-open/docx

Quick Start

import { generateDocument } from "@office-open/docx";
import { writeFileSync } from "node:fs";

const buffer = await generateDocument({
  sections: [
    {
      children: [
        {
          paragraph: {
            children: ["Hello World", { text: " - Bold text", bold: true }],
          },
        },
      ],
    },
  ],
});

writeFileSync("My Document.docx", buffer);

API

  • generateDocument(options) — generate a .docx file; generateDocumentSync and generateDocumentStream cover sync and streaming output
  • parseDocument(data) — read a .docx back into DocumentOptions from bytes, Blob, or ReadableStream; parseDocumentSync covers synchronous parsing
  • patchDocument(input) — patch an existing .docx template by placeholder replacement

Every input is a plain JSON object (DocumentOptions and its option types). The full typed API reference lives in the documentation; the same types are also frozen as JSON Schemas — npx office-open schema slice docx DocumentOptions.

Parsing

Read existing .docx files and re-create them as DocumentOptions:

import { parseDocument, generateDocument } from "@office-open/docx";
import { readFileSync, writeFileSync } from "node:fs";

const opts = await parseDocument(new Uint8Array(readFileSync("input.docx")));

// Modify parsed data, then re-generate
const buffer = await generateDocument(opts);
writeFileSync("output.docx", buffer);

Examples

Check the demo folder for 100+ working examples covering every feature.

Benchmark

Performance vs the original docx (9.6.1) package (higher ops/s is better, Windows 11; each scenario runs under both Node 24 and Bun 1.4).

Default = XML DEFLATE level 1; media matches MS Office Word — already-compressed formats (PNG/JPEG/GIF) are STOREd, the rest (EMF/WMF/BMP/TIFF/…) use DEFLATE level 6. All STORE = no compression ({ compression: { xml: 0, media: 0 } }). The docx package (async only) always DEFLATEs every entry including images, with no STORE option.

// Default (matches MS Office)
await generateDocument(options);
// All STORE (no compression)
await generateDocument(options, { compression: { xml: 0, media: 0 } });
// Stream as ReadableStream<Uint8Array> (pipe to a file / HTTP response)
generateDocumentStream(options);

Create + toBuffer / toStream

| Scenario | Runtime | Default sync | Default async | All STORE sync | All STORE async | Default stream | docx | | ------------------------------ | ------- | ------------ | ------------- | -------------- | --------------- | -------------- | ---------- | | Simple (2p + 1 img) | Node 24 | 905 ops/s | 1,311 ops/s | 2,478 ops/s | 2,985 ops/s | 1,477 ops/s | 91.2 ops/s | | | Bun 1.4 | 2,471 ops/s | 758 ops/s | 5,323 ops/s | 5,246 ops/s | 384 ops/s | 63.7 ops/s | | Styled paragraphs (20) + 1 img | Node 24 | 1,065 ops/s | 1,405 ops/s | 2,765 ops/s | 2,752 ops/s | 1,365 ops/s | 91.1 ops/s | | | Bun 1.4 | 2,994 ops/s | 692 ops/s | 4,567 ops/s | 4,627 ops/s | 443 ops/s | 72.2 ops/s | | Table (10x5) | Node 24 | 1,301 ops/s | 1,286 ops/s | 3,154 ops/s | 3,163 ops/s | 1,571 ops/s | 196 ops/s | | | Bun 1.4 | 2,791 ops/s | 691 ops/s | 5,107 ops/s | 4,882 ops/s | 543 ops/s | 252 ops/s | | Full featured + 2 imgs | Node 24 | 763 ops/s | 1,031 ops/s | 1,671 ops/s | 1,576 ops/s | 972 ops/s | 54.2 ops/s | | | Bun 1.4 | 1,646 ops/s | 575 ops/s | 2,630 ops/s | 2,456 ops/s | 330 ops/s | 41.1 ops/s |

Large Files — Create + toBuffer / toStream

| Scenario | Runtime | Default sync | Default async | All STORE sync | All STORE async | Default stream | docx | | ------------------------------ | ------- | ------------ | ------------- | -------------- | --------------- | -------------- | ---------- | | 2000 paragraphs + 20 images | Node 24 | 104.5 ops/s | 109.4 ops/s | 111.6 ops/s | 114.9 ops/s | 104 ops/s | 2.85 ops/s | | | Bun 1.4 | 148.8 ops/s | 126.5 ops/s | 168.0 ops/s | 164.9 ops/s | 37.4 ops/s | 2.18 ops/s | | 200x10 table | Node 24 | 252.4 ops/s | 247.3 ops/s | 282.1 ops/s | 288.7 ops/s | 253 ops/s | 35.6 ops/s | | | Bun 1.4 | 372.0 ops/s | 272.4 ops/s | 441.5 ops/s | 405.6 ops/s | 169 ops/s | 44.5 ops/s | | 20 sections x 100p + 40 images | Node 24 | 89.6 ops/s | 94.5 ops/s | 103.6 ops/s | 103.7 ops/s | 93 ops/s | 1.73 ops/s | | | Bun 1.4 | 141.9 ops/s | 90.9 ops/s | 163.7 ops/s | 170.4 ops/s | 33.2 ops/s | 1.15 ops/s |

Large File (~100MB) — Mixed Content

500 styled paragraphs + 38 mixed-size images (1-5MB, 100MB total) + 50x10 table.

| Scenario | Runtime | Default sync | Default async | All STORE sync | All STORE async | Default stream | docx | | ------------------------ | ------- | ------------ | ------------- | -------------- | --------------- | -------------- | ---------- | | Mixed (500p+38img+50x10) | Node 24 | 23.1 ops/s | 21.2 ops/s | 23.7 ops/s | 23.9 ops/s | 20.5 ops/s | 0.28 ops/s | | | Bun 1.4 | 38.8 ops/s | 32.5 ops/s | 36.5 ops/s | 30.7 ops/s | 5.27 ops/s | 0.21 ops/s |

Stream = generateDocumentStream (default compression, fully drained). Under Node the archive is deflated in parallel on the libuv thread pool; under Bun and browsers it deflates inline / off-thread via fflate.

Documentation

Related Packages

License