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

pdf-e-signature

v0.1.15

Published

A React component that allows users to select positions for e-signatures on PDFs

Downloads

23

Readme

PDF E-Signature

A React component library that allows users to select positions for e-signatures on PDFs and sign documents digitally.

Installation

npm install pdf-e-signature
# or
yarn add pdf-e-signature

Features

  • PDF document viewer
  • Signature positioning interface
  • Multiple signature formats
  • Signature storage and management
  • PDF document signing

Usage

Basic Example

import React, { useState } from 'react';
import { PDFSignatureSelector, SignPdf } from 'pdf-e-signature';

const SignatureApp = () => {
  const [pdfFile, setPdfFile] = useState(null);
  const [pdfUrl, setPdfUrl] = useState(null);
  const [signaturePositions, setSignaturePositions] = useState([]);
  const [signedPdf, setSignedPdf] = useState(null);
  
  const handleFileChange = (e) => {
    const file = e.target.files[0];
    if (file && file.type === 'application/pdf') {
      setPdfFile(file);
      const fileURL = URL.createObjectURL(file);
      setPdfUrl(fileURL);
      setSignaturePositions([]);
    }
  };
  
  const handleSigningComplete = (signedPdfBlob) => {
    setSignedPdf(URL.createObjectURL(signedPdfBlob));
  };
  
  return (
    <div>
      <input type="file" accept=".pdf" onChange={handleFileChange} />
      
      {pdfFile && (
        <PDFSignatureSelector 
          pdfFile={pdfFile}
          onSave={(e) => {setSignaturePositions(e.signaturePositions) }}
          pdfUrl={pdfUrl}
        />
      )}
      
      {pdfFile && signaturePositions.length > 0 && (
        <SignPdf
          pdfFile={pdfFile}
          pdfUrl={pdfUrl}
          signaturePositions={signaturePositions}
          onSigningComplete={handleSigningComplete}
        />
      )}
      
      {signedPdf && (
        <div>
          <h3>Signed Document:</h3>
          <iframe src={signedPdf} width="100%" height="500px" />
        </div>
      )}
    </div>
  );
};

export default SignatureApp;

Components

PDFSignatureSelector

Component for selecting positions where signatures should be placed on a PDF document.

Props

| Prop | Type | Required | Description | |------|------|----------|-------------| | pdfFile | File or Blob | Yes | PDF file to display and select positions on | | pdfUrl | Pdf Url | Yes | PDF url to display and select positions on | | onSave | Function | Yes | Callback function that receives the selected signature positions and pdf file |

SignPdf

Component for creating a signature and applying it to a PDF document.

Props

| Prop | Type | Required | Description | |------|------|----------|-------------| | pdfFile | File or Blob | Yes | PDF file to sign | | pdfUrl | Pdf Url | Yes | PDF url to sign | | signaturePositions | Array | Yes | Array of positions where signatures should be placed | | onSigningComplete | Function | Yes | Callback function that receives the signed PDF |

Development

Prerequisites

  • Node.js >= 14
  • npm or yarn
  1. Install dependencies
npm install
# or
yarn