The package automatically downloads linux 64bit wkhtmltopdf binary. Use case to be used with AWS Lambda functions
npm install @theo4u/wkhtmltopdf
./node_modules/.bin/wkhtmltopdf
./node_modules/.bin/wkhtmltoimage
With wkhtmltopdf:
var wkhtmltopdf = require('wkhtmltopdf');
wkhtmltopdf.command = './node_modules/.bin/wkhtmltopdf'
wkhtmltopdf('<h1>hello world</h1>', { output: 'out.pdf' })
MIT