@ehp/hypdf

0.1.4 • Public • Published

HyPDF

Node.js wrapper for the HyPDF Heroku Add-on API

This is a Node.js version the official Ruby wrapper for working with HyPDF on Heroku

Installation

Through NPM

$ npm install hypdf

or using Git

$ git clone git://github.com/treygriffith/hypdf.git node_modules/hypdf/

How to Use

var HyPDF = require('hypdf');

var hypdf = new HyPDF(process.env.HYPDF_USER, process.env.HYPDF_PASSWORD, {
  // default options to use - these can be changed for each individual API request
  bucket: "MY_S3_BUCKET",
  public: true, // all S3 uploads will be public by default
  test: true // we are in test mode - these requests won't count against our HyPDF quota
});

hypdf.htmltopdf("<html><body><h1>Title</h1></body></html>", {
    orientation: 'Landscape',
    copies: 2,
    // ... other options ...
  },
  function (err, response) {
    if(err) throw err;

    console.log(response.pdf);
  }
);

Documentation

Full API documentation for HyPDF can be found here.

Package Sidebar

Install

npm i @ehp/hypdf

Weekly Downloads

1

Version

0.1.4

License

MIT

Unpacked Size

14.6 kB

Total Files

7

Last publish

Collaborators

  • eugenehp