How to convert html to pdf in Node js

pdf
convert
html
node js

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 execution

18-03-2017 insert sql bulk database

How to use http-post request in node js

14-03-2017 http-post module node js

How to get current date and time (yyyy-mm-dd H:i:s) using javascript

09-03-2017 javascript date time

Remove last two characters from given string

06-03-2017 substring javascript remove

Send Mail in Node Js

21-02-2017 node js mail npm module