How to convert html to pdf in node js without exe

I am looking for a node.js module that can generate PDF from HTML.

I know that there are many options, for example. phantomjs, wkhtmltopdf. All these utilities require some command line tools.

I need something that is easy to install (only npm install xxx) and ready to use. I also do not want to call it requests (REST API). Does anyone know something? Thanks in advance.

+4
source share
1 answer

You might want to give pdfkitjs or pdfmake . Both projects are available as npm modules and are pretty well documented on github.

+3

All Articles