1.0.0 • Published 2 years ago

pdf-ghost-report v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
2 years ago

pdf-ghost-report

an open source solution for your nodejs reporting

Version npm npm Downloads 'License'

NPM

npm.io

Usage

// example using express web framework
const express = require('express');
const { generatePdf } = require('pdf-ghost-report');
router = express.Router();
router.post('/getpdf', async (req, res, next) => {
  // step 01 : get template name
  const template_name = 'template_name';
  const data = req.body;
  // step 02 : call pdf making function by passing the template folder and name
  const config = {
    emulator: 'screen' || 'print',
    printBackground: true,
    format: 'A4',
    margin: {
      top: '50px',
      bottom: '50px',
      left: '20px',
      right: '20px',
    },
    displayHeaderFooter: true,
  };
  /**
   * args :
   *  templateFolderPath: string,
   *  templateFileName: string,
   *  templateExtension: string,
   *  config: object,
   *  data: object
   *
   * return stream
   * */
  const pdf = await generatePdf('templates', 'test', 'hbs', config, data);
  // // step 03 : return the blob pdf stream to the client
  res.writeHead(200, {
    'Content-Type': 'application/pdf',
    'Content-Disposition': `attachment; filename=${template_name}.pdf`,
    'Content-Length': pdf.length,
  });
  res.end(pdf);
});
module.exports = router;

config

For more config Info check Puppeteer pdf section

Installation

npm install pdf-ghost-report
yarn add pdf-ghost-report

Run Tests

  • for now we haven't created any test
npm test

Todo

[ ] add tests
[ ] add docker
[ ] support more template engins like : `ejs, ...etc`

Author: BARAKA LARBI -laridev-

1.0.0

2 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago