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-preview/js

v1.1.2

Published

Vanilla JavaScript API for Doc Preview.

Readme

@doc-preview/js

Vanilla JavaScript host for Doc Preview, built on @doc-preview/core. Mount a full document viewer in any HTMLElement without React or Angular.

Current release: 1.1.2 — Depends on @doc-preview/core ^1.1.2. See monorepo CHANGELOG.

Repository: github.com/rajkishorsahu89/doc-preview

Demo: doc-preview-app.vercel.apptool · demo · guide

Keywords: doc-preview javascript vanilla-js document-viewer pdf file-preview

Install

npm install @doc-preview/js @doc-preview/themes
# Optional enterprise / office:
npm install @doc-preview/enterprise @doc-preview/office
@import "@doc-preview/themes/doc-preview.css";

Supported file types

| Category | Extensions | Package | | --- | --- | --- | | PDF | .pdf | core | | Images | .png, .jpg, .jpeg, .gif, .webp, .bmp, .svg, .tif, .tiff | core | | Word | .docx, .docm, .dotx | core | | Word (legacy) | .doc | office | | Excel | .xlsx, .xlsm, .xltx, .xls, .ods | office | | PowerPoint | .pptx, .pptm, .potx, .ppt, .odp | office | | OpenDocument text | .odt | office | | CSV / TSV | .csv, .tsv | core | | Text & data | .txt, .md, .log, .json, .xml | core | | HTML | .html, .htm | core | | Video / audio | .mp4, .webm, .mov, .mp3, .wav, .m4a | core | | Cloud embed (public URL) | .doc, .ppt, .pptx, .xlsx, .pdf, .odt, .ods, .odp | office |

Upload accept: .pdf,.doc,.docx,.docm,.dotx,.odt,.ods,.odp,.xls,.xlsx,.xlsm,.xltx,.ppt,.pptx,.pptm,.potx,.png,.jpg,.jpeg,.gif,.webp,.bmp,.svg,.tif,.tiff,.mp4,.webm,.mov,.mp3,.wav,.m4a,.txt,.md,.html,.htm,.csv,.tsv,.json,.xml,.log

Usage

import { createDocPreview } from "@doc-preview/js";

const instance = createDocPreview(document.getElementById("viewer")!, {
  documents: [{ uri: "/sample.pdf", fileName: "sample.pdf" }],
  onPhaseChange: (e) => console.log(e.phase)
});

// Later:
instance.refresh();
instance.destroy();

Usage — headless core API

For full control, use core directly (also re-exported from this package):

import {
  createPreviewApi,
  mountPreviewTree,
  createPreviewDocumentFromBlob
} from "@doc-preview/js";

const api = createPreviewApi({
  documents: [{ uri: "/file.pdf" }]
});

await mountPreviewTree({
  host: document.getElementById("viewer")!,
  engine: api.engine
});

Enterprise

Register a licence before mounting (via @doc-preview/enterprise):

import { registerEnterpriseLicenseFromPredefinedKey } from "@doc-preview/enterprise";

registerEnterpriseLicenseFromPredefinedKey("YOUR-LICENSE-KEY");

Pass enterprise options through config.enterprise on createDocPreview.

Related packages

License

MIT