• Stars
    star
    394
  • Rank 109,295 (Top 3 %)
  • Language
    JavaScript
  • License
    GNU Lesser Genera...
  • Created over 6 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

HTML/CSS/JS in, PDF out, via Chrome

BreezyPDF Lite: HTML to PDF generation as a Service

Submit a slug of HTML, get a Google Chrome rendered PDF back.

Build Status Open Source Helpers

Deploy

A quick to stand up HTML to PDF service powered by headless Google Chrome. Deploy with one click and start generating PDF's from your web application or command line.

Getting Started

1. Submit HTML to be converted

This is done with a POST request the the web server. We'll use some example HTML for this example.

  curl -X POST -H 'Authorization: Bearer PRIVATE_TOKEN_DEFINED_IN_SERVER_ENVIRONMENT' \
    http://url-of-your-breezy-pdf-lite-server/render/html \
    -d "`curl https://raw.githubusercontent.com/danielwestendorf/breezy-pdf-lite/master/sample.html`" \
    -o example.pdf

This will create the PDF in the current directory by the name of example.pdf.

2. Configure with meta tags (optional)

All configuration for the rendering of your PDF can be configured by meta tags within the HTML you submit. Simply insert the needed meta tag into the head or body of the HTML.

  <meta name="breezy-pdf-width" content="10">
Tag name Default Value Description
breezy-pdf-filename output.pdf Name of the pdf
breezy-pdf-width 8.5 PDF page width in inches
breezy-pdf-height 11 PDF page height in inches
breezy-pdf-cssPageSize false Use page size defined by CSS
breezy-pdf-marginTop 0.4 Top margin
breezy-pdf-marginRight 0.4 Right margin
breezy-pdf-marginBottom 0.4 Bottom margin
breezy-pdf-marginLeft 0.4 Left margin
breezy-pdf-landscape false Print in landscape mode
breezy-pdf-scale 1 Scale the viewport before converting to pdf
breezy-pdf-displayBackground false Render the background in the HTML is included in the PDF

View the all the configuration options and their documentation here.

2.a Header and Footer Templates

Configure the HTML template to be included at the top and bottom of every page. Include elements with the classes of date, title, pageNumber, and totalPages to have values inserted at render time. At this time, any images must be DataURI encoded and styles must be specified within the template. Defaults to no HTML.

CSS class Description
date Formatted render date displayed in UTC
title Title of the document specified by the title tag
pageNumber The count of the current page in the PDF
totalPages The total count of pages in the PDF
2.b Completion Triggers

Notify the rendering engine when your rich content has completed loading and the PDF is ready to be rendered. Most typically used when complex JavaScript needs to be evaluated. The default completion trigger is a timer of 5000ms. If multiple completion triggers, the first trigger used will be adopted based on the order in which they're specified here.

Callback

A JavaScript function in the global namespace which will be defined by the renderer. Your code will be invoke this callback when the document is ready for PDF rendering. Optional timeout can be specified in ms, defaulting to 5000ms.

<meta name="breezy-pdf-callback" content="myWorkHereIsDoneCallback">
<meta name="breezy-pdf-timeout" content="3000">
function() {
    // My hard working JS here
    window.myWorkHereIsDoneCallback();
}
Event

A JavaScript event which will be dispatched on an element when the document is ready for PDF rendering. Optional CSS element selector can be specified, defaulting to document. Optional timeout can be specified in ms, defaulting to 5000ms.

<meta name="breezy-pdf-event" content="myCustomEvent">
<meta name="breezy-pdf-element" content="#myContainer">
<meta name="breezy-pdf-timeout" content="3000">
var event = new CustomEvent('myCustomEvent');
var element = document.getElementBydId('myContainer');

element.dispatchEvent(event);
Element

The CSS selector of an element which will be inserted into the document when the document is ready for PDF rendering. Optional timeout can be specified in ms, defaulting to 5000ms.

<meta name="breezy-pdf-element" content="#last-page > #last-element">
<meta name="breezy-pdf-timeout" content="3000">
function() {
    // My hard working JS here
    var lastPage    = document.getElementById('#last-page');
    var lastElement = document.createElement('div');
    
    lastElement.id = 'last-element';
    
    lastPage.appendChild(lastElement);
}
Variable

The variable in the global namespace which will be defined when the document is ready for PDF rendering. Optional timeout can be specified in ms, defaulting to 5000ms.

<meta name="breezy-pdf-variable" content="myWorkHereIsDoneVariable">
function() {
    // My hard working JS here
    window.myWorkHereIsDoneVariable = true;
}
Timer

The predefined amount of time to wait before the document is rendered to PDF. Timer should be specified in ms, defaulting to 5000ms.

<meta name="breezy-pdf-timer" content="10000">

Deployment

Heroku

Deploy

  1. Deploy to Heroku with one-click.

Clients

Docker

docker run -it -p 5002:5002 -e "DEBUG=breezy-pdf-lite:*" -e "PORT=5002" -e "PRIVATE_TOKEN=YOURSUPERSECRETTOKEN" danielwestendorf/breezy-pdf-lite:latest

Non-Heroku

  1. Install node & yarn
  2. yarn install
  3. Set the Environment variables specified below
  4. Start the web process node index.js

Configuration

Set the Environment/Heroku Config Vars

ENV Variable Default Value Description
PRIVATE_TOKEN generated secret A private key for accessing the API.

Set DEBUG Config var to breezy-pdf-lite:* to get debugged output.

Run Tests

$ /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --interpreter none --headless --disable-gpu --disable-translate --disable-extensions --disable-background-networking --safebrowsing-disable-auto-update --disable-sync --metrics-recording-only --disable-default-apps --no-first-run --mute-audio --hide-scrollbars --remote-debugging-port=9222

$ npm test

More Repositories

1

get_schwifty

Render portions of your Rails view in a background job queue. ActiveJob + ActionCable.
Ruby
190
star
2

breezy_pdf_lite-ruby

Ruby middleware/client for breezy-pdf-lite, an HTML -> PDF service powered by Google Chrome
Ruby
56
star
3

Thumper

An OSX client of Subsonic
Ruby
48
star
4

HTML-Slide-Presenter

MacRuby application to display your HTML slideshows fullscreen w/Apple Remote Support
Objective-C
20
star
5

sinatra-subroutes

Subdomain based route matching
Ruby
12
star
6

WorkoutBook

Track you gym workouts with this localstorage Backbone app
JavaScript
11
star
7

devise-async-stretch

Move password stretching into a background job for fast user creation but while maintaining difficult to crack storage.
Ruby
8
star
8

multiple_ajax_upload

Ruby on Rails demo of uploading multiple files on one page using ajax. Displays errors and successful saves. Added support for mutliple file uploads.
JavaScript
8
star
9

engineering-app

Form for collecting web engineer job applications while providing an easy coding challenge to filter out the resume flingers
Ruby
6
star
10

breezy_pdf-ruby

Eazy HTML to PDF conversion without the headache
Ruby
5
star
11

Visify.js

A jQuery plugin for graphing byte data
JavaScript
4
star
12

robologger

Simple Web application to scan robocopy logs for errors, show them in a web page, and send notification emails. All written in Ruby
JavaScript
2
star
13

Houdini

Launch your rdesktop sessions from the OS X Menu bar
Ruby
2
star
14

QTKitBroken

A repo showing that Apple's own API's don't follow it's sandboxing guidelines.
Objective-C
2
star
15

breezy-pdf-lite-client-js

Javascript client for breezy-pdf-lite, an HTML -> PDF service powered by Google Chrome
JavaScript
2
star
16

ruby-PACgen

Ruby script to create multiple PAC files from an ERB Template
Ruby
1
star
17

breezy_pdf-ruby-demo

Demo app for BreezyPDF
CSS
1
star
18

get_schwifty_demo

Demo app for get_schwifty
Ruby
1
star
19

Triforce

Ruby
1
star
20

bartender

Ruby
1
star
21

Snake

Snake! An HTML5 clone of the classic game found on early mobile phones
CoffeeScript
1
star
22

raggio

A simple Ruby based web interface to manage a FreeRADIUS server
JavaScript
1
star
23

pdf-printer

JavaScript
1
star
24

nested_attributes_demo

JavaScript
1
star
25

jquery.greyscaleImage

Create a greyscale image rollover effect clientside
JavaScript
1
star
26

dnsimpler

A Simple DNSimple API wrapper which always provides the response you're looking for
Ruby
1
star