How to convert html to pdf in node js without exe
html, node.js, pdf
Solution
You might want to give pdfkitjs or pdfmake a try. Both the projects are available as npm modules and are pretty well documented on github.
Problem
I'm looking for a node.js module, which is able to generate PDF from HTML. I know there are many options e.g. phantomjs, wkhtmltopdf. All this utilities require some command line tools. I need something, that is easy to install (only `npm install xxx`) and is ready for use. I also don't want to call it by requests (REST API). Do anybody know something? Thanks in advance.