The node-red-contrib-html-pdf-converter
node allows you to convert HTML content into a PDF file. This node is useful for generating PDF reports or documents from HTML content within your Node-RED flows.
To install this node, use the Node-RED Palette Manager or install it directly via npm:
npm install node-red-contrib-html-pdf-converter
The node-red-contrib-html-pdf-converter
node converts HTML content received on its input into a PDF file and saves it to a specified directory.
Specify the base name for the generated PDF file. The node will automatically append a counter to ensure that each file name is unique.
- Example:
report
This will generate files likereport_1.pdf
,report_2.pdf
, etc.
The path where the PDF files will be saved. This path is fixed to node-red/PDFs/ and is displayed as read-only in the configuration.
Here is an example flow to use the node-red-contrib-html-pdf-converter
node:
[
{
"id": "html-to-pdf-node",
"type": "html-to-pdf",
"name": "Generate PDF",
"pdfName": "report",
"x": 300,
"y": 200,
"wires": [
[
"debug-node"
]
]
},
{
"id": "inject-node",
"type": "inject",
"name": "Inject HTML",
"payload": "<h1>Hello World</h1>",
"payloadType": "str",
"topic": "",
"x": 100,
"y": 200,
"wires": [
[
"html-to-pdf-node"
]
]
},
{
"id": "debug-node",
"type": "debug",
"name": "Debug Output",
"active": true,
"x": 500,
"y": 200,
"wires": []
}
]
node-red-contrib-html-pdf-converter Node Configuration
- PDF Name: The base name for the PDF file. The node appends a counter to ensure uniqueness.
- Save Path: The fixed path where the PDFs are saved. Displayed as read-only.
- Ensure that Node-RED has the necessary permissions to write to the
node-red/PDFs/
directory. - The node automatically increments the counter to avoid overwriting existing files with the same name.
If you have suggestions or improvements, feel free to contribute to the repository or open an issue.
This node is licensed under the MIT License.