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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-pdf-util

v0.4.0

Published

Simplifying PDF file manipulation in Node.js with splitting, merging and converting capabilities.

Downloads

6

Readme

Node PDF Util

Node PDF Util is a package that provides utilities for working with PDF files in Node.js applications. It includes commands for splitting, merging and converting PDF files.

Installation

You can install Node PDF Util via npm:

npm install node-pdf-util

Merge PDF files

JavaScript

const { MergePdfAction } = require('node-pdf-util');

// Example usage
const pdfFiles = ['path/to/file1.pdf', 'path/to/file2.pdf']; // Array of PDF files to merge
const outputPath = 'path/to/merged.pdf'; // Output path for the merged PDF
const mergeAction = new MergePdfAction(pdfFiles, outputPath);

// Execute merge action
mergeAction.execute()
    .then(() => console.log('PDFs merged successfully'))
    .catch(error => console.error('Error while merging PDFs:', error));

TypeScript

import { MergePdfAction } from 'node-pdf-util';

// Example usage
const pdfFiles: string[] = ['path/to/file1.pdf', 'path/to/file2.pdf']; // Array of PDF files to merge
const outputPath: string = 'path/to/merged.pdf'; // Output path for the merged PDF
const mergeAction: MergePdfAction = new MergePdfAction(pdfFiles, outputPath);

// Execute merge action
mergeAction.execute()
    .then(() => console.log('PDFs merged successfully'))
    .catch(error => console.error('Error while merging PDFs:', error));

Split PDF files

JavaScript

const { SplitPdfAction } = require('node-pdf-util');

// Example usage
const pdfFiles = ['path/to/file1.pdf', 'path/to/file2.pdf']; // Array of PDF files to split
const outputPath = 'path/to/output_directory'; // Output directory for the split PDF pages
const pageLength = 1; // Number of pages per split (optional, default is 1)
const splitAction = new SplitPdfAction(pdfFiles, outputPath, pageLength);

// Execute split action
splitAction.execute()
  .then(() => console.log('PDFs split successfully'))
  .catch(error => console.error('Error while splitting PDFs:', error));

TypeScript

import { SplitPdfAction } from 'node-pdf-util';

// Example usage
const pdfFiles: string[] = ['path/to/file1.pdf', 'path/to/file2.pdf']; // Array of PDF files to split
const outputPath: string = 'path/to/output_directory'; // Output directory for the split PDF pages
const pageLength: number = 1; // Number of pages per split (optional, default is 1)
const splitAction: SplitPdfAction = new SplitPdfAction(pdfFiles, outputPath, pageLength);

// Execute split action
splitAction.execute()
  .then(() => console.log('PDFs split successfully'))
  .catch(error => console.error('Error while splitting PDFs:', error));

API Specification

MergePdfAction

Represents an action to merge multiple PDF files into a single PDF file.

  • Constructor:
    • new MergePdfAction(pdfFiles: string | string[], outputPath: string)
      • pdfFiles: The path(s) to the PDF file(s) to merge. Can be a single string or an array of strings.
      • outputPath: The path where the merged PDF will be saved.
  • Methods:
    • execute(): Promise<void>
      • Executes the action to merge multiple PDF files into a single PDF file.
      • Returns: Promise<void> - A Promise that resolves when the PDF files are successfully merged.
SplitPdfAction

Represents an action to split a PDF file into individual pages or by specified page length.

  • Constructor:
    • new SplitPdfAction(pdfFiles: string | string[], outputPath: string, pageLength: number = 1)
      • pdfFiles: The path(s) to the PDF file(s) to split. Can be a single string or an array of strings.
      • outputPath: The directory where the individual pages will be saved.
      • pageLength: (Optional) The number of pages per split. Default is 1.
  • Methods:
    • execute(): Promise<void>
      • Executes the action to split the PDF file(s) into individual pages or by specified page length.
      • Returns: Promise<void> - A Promise that resolves when the PDF is successfully split.