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

url2pdf

v0.4.7

Published

Fetches a URL and converts HTML to PDF files using PhantomJS

Downloads

160

Readme

#Url2PDF#

Grab a URL and convert the HTML to PDF using PhantomJS for better rendering

Installation

npm install url2pdf --save

Usage

###Simple

var url2pdf = require("url2pdf");

url2pdf.renderPdf("http://www.google.com")
	.then(function(path){
    	console.log("Rendered pdf @", path);
	});

###In Express route as a download

var url2pdf = require("url2pdf");

function myRoute(req, res){
    url2pdf.renderPdf(url)
        .then(function (path) {
            res.sendFile(path);
        })
        .catch(function(err){
            res.status(500).json(err);
        })
}

PDF From HTML String

So you have made your html in Jade etc and now you want to just turn it into a PDF without creating a whole website just for this purpose? Easy! Just do as below:

var url2pdf = require("url2pdf");
url2pdf.renderFromHTML("<html><body><h1>HELLO WORLD</h1></body></html>")
	.then(function(path){
    	console.log("Rendered pdf @", path);
	});
    

Configuration options

You can set the configuration options globally by editing the url2pdf.opts object. The default settings are shown below

{
  paperSize: {format: "A4", orientation: 'portrait', margin: '1cm'}, //Pretty self explanatory, adjust as needed
  saveDir: path.join(__dirname, "pdfTemp"), //This is where the temporary files will be kept 
  idLength: 30 //The length of the file ID, adjust if you need to avoid conflicts or just want smaller filenames
};

If you want to just edit the settings for one render, you can do this by passing in just the object fields you want to change as the second argument:

url2pdf.renderPdf("http://www.google.com", {paperSize: {orientation: "landscape"}})

Cleanup

url2pdf comes with an auto cleanup function that will scan files in your temp directory and delete old ones as necessary. This is optional and should be used at your own risk (ie don't point the temp directory anywhere stupid!);

To use it call the following function, passing in the age in seconds you would like to delete

url2pdf.cleanUp(5); //Clean up all files older than 5 seconds

Fonts/Page Too large?

There is a problem with PhantomJS related to this very long thread: https://github.com/ariya/phantomjs/issues/12685

This is the hacky workaround for the moment:

html {
    zoom: 0.55; /*workaround for phantomJS2 rendering pages too large*/
}

Known bugs

There is a problem with rendering images when using HTML render mode. I'm pretty sure it has to do with the images still being prepared by PhantomJS when the callback happens but haven't managed to get to the bottom of it yet. Any help would be much appreciated! See the example.js for demo.

Tests

Don't really have unit tests. To test it out you can run node example.js which is what is used to make sure its all clicking together. If you are contributing code - at the very least run it to make sure it all seems ok