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

@myteril/node-win-printer

v1.1.5

Published

A Node.js package to print PDF files and get the detailed information of available printers on Windows.

Downloads

28

Readme

node-win-printer

The package to print PDF files and get the information of all available printers on Windows.

It uses WMIC tool to extract the detailed printer information and Sumatra PDF to print PDF files.

Requirements

You need to install Sumatra PDF or save its portable version in a folder. After installation you can use PDFPrinter class by providing the path of the executable file.

You can download the installer and the portable version from https://www.sumatrapdfreader.org/download-free-pdf-viewer

Installation

For NPM:

npm install @myteril/node-win-printer

Usage

Printing PDF Files

// Import the class.
const { PDFPrinter } = require("@myteril/node-win-printer")

// Create an instance with a configuration.
const printer = new PDFPrinter({
    // Specify the path of the Sumatra PDF executable.
    sumatraPdfPath: "C:\\sumatra-pdf-executable.exe"
})

// Print a PDF file. (Note: You should use the below call in an asynchronous context.)
await printer.print({
    // The path of the PDF file.
    file: "C:\\pdf-file.pdf",
    // The name of the printer.
    printer: "Microsoft Print to PDF",
    // Only the pages 1, 3, 5-10.
    pages: [1, 3, {start: 5, end: 10}],
    // The pages will be printed as monochrome.
    color: false,
    // The pages will be scaled so that they will fit into the printable area of the paper.
    scale: "fit"
})

Getting Printer Information

// Import the function.
const { getPrinters } = require("@myteril/node-win-printer")

// Call the function to get the array of printer information objects. 
const printerInfoList = await getPrinters()

// You may want to print the list to inspect.
console.dir(printerInfoList)

Example Output (in JSON)

[
  {
    "Attributes": 580,
    "AveragePagesPerMinute": 0,
    "Capabilities": [ 4, 2 ],
    "CapabilityDescriptions": [ "Copies", "Color" ],
    "Caption": "Microsoft Print to PDF",
    "Default": true,
    "DefaultPriority": 0,
    "DetectedErrorState": 0,
    "DeviceID": "Microsoft Print to PDF",
    "Direct": false,
    "DoCompleteFirst": true,
    "DriverName": "Microsoft Print To PDF",
    "EnableBIDI": false,
    "EnableDevQueryPrint": false,
    "ExtendedDetectedErrorState": 0,
    "ExtendedPrinterStatus": 2,
    "Hidden": false,
    "HorizontalResolution": 600,
    "JobCountSinceLastReset": 0,
    "KeepPrintedJobs": false,
    "LanguagesSupported": [ 48 ],
    "Local": true,
    "Name": "Microsoft Print to PDF",
    "PaperSizesSupported": [
       7,  1,  8,  1,  1,
      21, 22, 23, 54, 55
    ],
    "PortName": "PORTPROMPT:",
    "PrinterPaperNames": [
      "Letter",    "Tabloid",
      "Legal",     "Statement",
      "Executive", "A3",
      "A4",        "A5",
      "B4 (JIS)",  "B5 (JIS)"
    ],
    "PrinterState": 0,
    "PrinterStatus": 3,
    "PrintJobDataType": "RAW",
    "PrintProcessor": "winprint",
    "SpoolEnabled": true,
    "Status": "Unknown",
    "SystemName": "MSI",
    "VerticalResolution": 600
  }
]