The package automatically downloads linux 64bit wkhtmltopdf binary, to be used with AWS Lambda
npm install @theo4u/wkhtmltopdfshell
npm install @theo4u/wkhtmltopdf
`Usage
`shell
./node_modules/.bin/wkhtmltopdf
`
With wkhtmltopdf:
`js
var wkhtmltopdf = require('wkhtmltopdf');wkhtmltopdf.command = './node_modules/.bin/wkhtmltopdf'
wkhtmltopdf('
hello world
', { output: 'out.pdf' })
``