Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wm3ndez/simple-html-to-pdf-server


https://github.com/wm3ndez/simple-html-to-pdf-server

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

Simple HTML to PDF server
=========================

How to use
----------

Build and run the docker image
```bash
$ docker build -t html_to_pdf_server .
$ docker run -p 5000:5000 html_to_pdf_server
```

Send the HTML as text:

```bash
$ curl -o mypdf.pdf -X POST -d "

Hello

" http://localhost:5000/pdf
```