In node js there is an node module like html-to-pdf. Now install html-to-pdf module, command for install this module is
npm install html-to-pdf --save
after installing this module, we need to include this module into our js file. below command for include this module is
var htmlToPdf = require('html-to-pdf');
Syntax for converting html file to pdf is,
htmlToPdf.convertHTMLFile('path/sample.html', 'path/sample.pdf', function (error, success) { if (error) { console.log('Something wrong.'); console.log(error); } else { console.log('Successfully converted'); console.log(success); } } );
Now convert dynamic html content variable to pdf,
var html = '<h1>Example for HTML to PDF</h1>'; htmlToPdf.convertHTMLString(html, 'path/sample.pdf', function (error, success) { if (error) { console.log('Something Wrong'); console.log(error); } else { console.log('Successfully converted!'); console.log(success); } } );
You might also like:
How to insert bulk information into database in single query execution18-03-2017 insert sql bulk database |
How to upload file by using request module18-03-2017 request module node js |
How to make an http request in node js14-03-2017 http module node js |
Call a function every second or 5 seconds in javascript22-02-2017 setinterval function calling |
Get random strings from given string In javascript21-02-2017 javascript random string |