1.0.0 • Published 7 months ago

rti-lab-pdf-kit-js v1.0.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
7 months ago

Rti Lab Pdf Kit Js

Vanilla js library exporting Pdf viewer using PDF.js.

Table of Contents

Setup

nvm and pnpm are required.

  • Instal nvm.

  • Run nvm i and npm install -g pnpm.

Development

nvm use
pnpm install

During development run this command to start dev server with a sample application

pnpm dev

Build

This project can build for esm, commonjs,iife, umd targeting es6. Additionally can target es5 (TARGET=es5 pnpm build).

pnpm build-all

Usage example

import { PdfViewer } from "../src/index.js";

const container = document.getElementById("app") as HTMLDivElement;
const pdfViewer = new PdfViewer({ container });
pdfViewer.open("<pdf_url>").then(...).catch(...);