🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

node-red-contrib-pdfmake

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-pdfmake

a node to create pdf documents from a well defined json

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
227
50.33%
Maintainers
1
Weekly downloads
 
Created
Source

node-red-contrib-pdfmake

This node is a simple wrapper around pdfmake, a JSON based solution to create PDFs from a given document definition.

pdfmake website

Install

node-red-contrib-pdfmake can be install using the node-red editor's pallete or by running npm in the console:

npm install node-red-contrib-pdfmake

Usage

There is just one node, and it expects an object in msg.payload with a valid docDefinition like:

{ 
	"content": [
		"First paragraph",
		"Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines"
	]
	
}

The node returns a msg.payload holding the created PDF either as a Buffer or a base64 encoded string (as configured in the node).

Examples

Examples are provided using the default node-red way, i.e. use import in the editor menu and look for examples in the node-red-contrib-pdfmake package

#1 simple text PDF

This is the first example found on the pdfmake website.

#2 image & svg example PDF

This is a custom example showing how to read an image from file and integrate it into the PDF. It also shows a simple SVG to be included as well.

Keywords

node-red

FAQs

Package last updated on 04 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts