Sign inSign up

rossjcooper/node-pdf

By rossjcooper

•Updated over 5 years ago

Image
0

206

rossjcooper/node-pdf repository overview

⁠Node PDF Export Server

This project creates a Node server that can export webpages to PDF using a URL or raw HTML passed to it.

⁠Quick Start Docker

$ docker pull rossjcooper/node-pdf
$ docker run -p 3000:3000 -it --rm rossjcooper/node-pdf

https://hub.docker.com/r/rossjcooper/node-pdf⁠

⁠Quick Start Node

$ npm install
$ npm run start

⁠PDF from URL

Make a request to http://localhost:3000/export/pdf?url=#urlHere#

⁠PDF from HTML

Make a POST request to http://localhost:3000/export/pdf with JSON body:

{
	"html": "<h1>Test</h1>"
}

⁠PDF Page Options

You can set the footer HTML by passing it through the URL query parameter ?footer_html=Example Footer

⁠Page Numbers

You can show page numbers using the following URL query parameter ?show_page_numbers=true.

Note: setting the footer_html option will override the page numbers.

⁠Docker Build

⁠Build docker image locally from source
docker build -t node-pdf .
⁠Running local docker image
docker run --name node-pdf -p 3000:3000 -it --rm node-pdf

Tag summary

Content type

Image

Digest

Size

622.4 MB

Last updated

over 5 years ago

docker pull rossjcooper/node-pdf