Hacker News new | ask | show | jobs
by creatio 4747 days ago
What technology did you use to build it? Or generate the PDF that fast?
1 comments

It's built on node.js, there's a great command line tool called wkhtmltopdf:

https://github.com/antialize/wkhtmltopdf

I have an invoicing pipeline in the form of a Python command-line "wizard", which is effectively in interactive form, which then fills a restructured text document, which gets turned into HTML before becoming a PDF via wkhtml2pdf. However, wkhtml2pdf is kind of CPU hungry and not that fast. How did you make that scale?