Skip to content

Instantly share code, notes, and snippets.

@schatekar
Created August 17, 2015 20:30
Show Gist options
  • Save schatekar/c7ec5ffb536849b8d352 to your computer and use it in GitHub Desktop.
Save schatekar/c7ec5ffb536849b8d352 to your computer and use it in GitHub Desktop.
var conversion = require("phantom-html-to-pdf")();
var fs = require('fs');
console.time("phantom");
var writeStream = fs.createWriteStream('linkedin_phantom.pdf');
conversion({ url: "https://www.linkedin.com/in/chatekar" }, function(err, pdf) {
console.log(pdf.numberOfPages);
pdf.stream.pipe(writeStream);
console.log('stuck here...');
});
console.timeEnd('phantom');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment