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

doc-to-adoc

v1.1.1

Published

Universal CLI tool to convert document & data formats into canonical AsciiDoc (.adoc)

Downloads

689

Readme

doc-to-adoc 📄➡️📝

Universal CLI and Library to convert document, markup, image, and structured data formats into canonical AsciiDoc (.adoc).

Designed as a single-command ingestion engine for technical documentation, local LLM RAG pipelines, and automated document conversion workflows.

Features

  • 📦 Zero-Setup ESM: Ready for Node.js ESM and TypeScript.
  • ⚗️ Unified Pipeline: Single dependency for RAG context extraction and document conversion—no complex external dependencies required.
  • 🚀 Extensive Format Support: Ingest documents, tabular data, markup, and image text seamlessly.

Supported Formats

| Category | Extensions | |:-----------------|:---------------------------------------------------------------------------------------------------| | Documents | .doc, .docx, .pdf, .rtf, .odf, .odt, .latex, .tex | | Data | .csv, .json, .ods, .tsv, .xls, .xlsx, .xml, .yaml, .yml, .toml | | Markup | .htm, .html, .md, .markdown, .mdc, .mdx, .mediawiki, .org, .rst, .typ, .wiki | | Images (OCR) | .apng, .bmp, .gif, .jpeg, .jpg, .pbm, .png, .tif, .tiff, .webp |

🚀 Usage

When choosing a markup format for technical writing, LLM RAG pipelines, or general documentation, AsciiDoc, Markdown, and Plain Text sit at distinct points along the spectrum of complexity versus functionality.

  • Use AsciiDoc when building structured, technical documentation or LLM ingestion pipelines where explicit semantic metadata are critical.
  • Use Markdown for lightweight, human-facing docs where universal rendering matters most.
  • Use Plain Text only when structural context is completely unnecessary.

Node.js Usage

import { convert } from 'doc-to-adoc';

const content = await convert({
  input: './my.docx',
  type: 'adoc' // Options: 'adoc' | 'md' | 'txt'
});
console.log(content);

CLI Usage

Basic Conversion

# Convert DOCX to AsciiDoc
doc-to-adoc ./my.docx ./my.adoc

Output Types

Support for different output formats via -type (or --type, -t):

  • adoc, asciidoc (default): Standard AsciiDoc output.
  • md, markdown: Converts through the pipeline input -> asciidoc -> markdown.
  • txt, text: Converts through the pipeline input -> asciidoc -> plain text.
# Convert PDF to Markdown
doc-to-adoc -input ./report.pdf -type markdown

# Convert Excel to Plain Text
doc-to-adoc ./data.xlsx ./output.txt -type text

🚀 Local Execution

# Transpile TypeScript into ./bin/
npm run build
# Link globally for local testing
npm link
# Run from anywhere without chmod
doc-to-adoc ./my.docx ./my.adoc
# Run from anywhere without chmod
doc-to-adoc ./my.docx ./my.txt -t txt