Git Product home page Git Product logo

Comments (8)

marcbachmann avatar marcbachmann commented on July 18, 2024 1

Something like this:

var nunjucks = require('nunjucks')
nunjucks.configure(__dirname+'/views')
html = nunjucks.render('template.html', reportOptions)
htmlPdf.create(html, options).toStream(function...)

from node-html-pdf.

itsmebhavin avatar itsmebhavin commented on July 18, 2024

@marcbachmann
just for an example -

var data = {
ticketNum : 12121212,
dateIssued: '2014-04-02',
personName: 'John Doe',
notes:' Lorem Ipsum Lorem ipsum dolor sit amet, consectetur adipiscing'
};

//TODO: pass this data object json to html to print this data.

pdf.create(html,report_options).toStream(function(err, stream){
    console.log(stream);
    stream.pipe(res);
});

from node-html-pdf.

marcbachmann avatar marcbachmann commented on July 18, 2024

Ah, that's not the job of this library. You can use some template language to generate your html.
All template languages in node give you a .render method that output the html rendered with the locals.
load template -> render using data -> html-pdf

from node-html-pdf.

itsmebhavin avatar itsmebhavin commented on July 18, 2024

@marcbachmann Oh I see now. I guess i am still trying to understand node better and I appreciate your help in this query. I will give it a try now and will post here.
thank you,

from node-html-pdf.

marcbachmann avatar marcbachmann commented on July 18, 2024

you're welcome

from node-html-pdf.

itsmebhavin avatar itsmebhavin commented on July 18, 2024

@marcbachmann You saved me .. nunjucks worked for me like a charm and pdf is also generating using your lib. I have updated my sample code with some more node.js clustering support.
https://github.com/bapatel1/node-html-pdf-sample
Thank you once again.

from node-html-pdf.

itsmebhavin avatar itsmebhavin commented on July 18, 2024

Closing issue with solution which @marcbachmann suggested as above. Using template engine called "nunjucks" worked for me.

from node-html-pdf.

Lichtjaeger avatar Lichtjaeger commented on July 18, 2024

I prefer Jade. Works the same, but is more “stylish”.

from node-html-pdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.