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

headlesspdf

v0.0.8

Published

A module for generating pdfs using node and headless chrome

Downloads

20

Readme

Headlesspdf

npm Travis

A module for generating pdfs using node and headless chrome. This module allows writing code that manipulates the dom using node and then outputs the result as a pdf, using a combination of browserify and headless chrome. The primary intended purpose is to use this in combination with d3 to make pretty static graphs. As a result, in the node file you pass in, all of the standard web variables like document and window will be defined, but so will standard node variables like __filename and process, and the node variables will contain relevant information. Additionally a shim fs module can be loaded that will read files relative to the cwd this was started from.

Usage

From the command line:

headlesspdf -i myfile.js -o output.pdf
headlesspdf -i myfile.js -o output.pdf -c style.css arg1 arg2

or via the api:

const headlesspdf = require('headlesspdf');
const fs = require('fs');

fs.writeFileSync('output.pdf', headlesspdf('myfile.js'), 'base64', err => {
  if (err) {
    console.error(err);
  }
});

const style = fs.readFileSync('style.css', 'utf8');
fs.writeFileSync('output.pdf', headlesspdf('myfile.js', {styles: [style], argv: ['arg1', 'arg2']}), 'base64', err => {
  if (err) {
    console.error(err);
  }
});

The command line and api calls produce identical results. Your javascript file has to be a flat file so the require lookup by browserify will work.

Installation

npm install -g headlesspdf

To Do

  • Potentially update __filename and __dirname. Not sure if this is possible without breaking modules, and it's probably not that important to make non-relative.
  • Add protection options, e.g. don't give access to files, reveal absolute path, environment, send files over ssl, etc.
  • Add process.stdin by reading the whole thing and passing it as a string in setup.