Git Product home page Git Product logo

Comments (4)

marcbachmann avatar marcbachmann commented on July 18, 2024

Sorry, that's not built in yet. But to write a script is quite easy.
What's your use case?

from node-html-pdf.

dsoto avatar dsoto commented on July 18, 2024

The use case is automatic pdf document generation from asciidoc or markdown using tools like dexy which rely on a command line interface.

from node-html-pdf.

marcbachmann avatar marcbachmann commented on July 18, 2024

I don't want to have a submodule that needs additional dependencies and causes problems at updates.
If you like I can make a separate one. But I don't think it will be popular enough.

Here is a script that's probably enough for you (I haven't tested it, so sorry if it crashes 😄)
If there's more demand I can move that code into a separate module.

You can call it like this:
./create-pdf.js --src=/path/to/html-file.html --dst=/destination/path/to/the.pdf

#!/usr/bin/env node
var pdf = require('html-pdf');
var assert = require('assert');
var fs = require('fs');
var path = require('path');
var args = require('minimist')(process.argv.slice(2), {alias: {s: 'source', src: 'source', d: 'destination', dst: 'destination'}});

assert(args.source, 'A source is required');
assert(args.destination, 'A destination is required');

html = fs.readFileSync(path.resolve(args.source), 'utf8');
pdf.create(html).toFile(path.resolve(args.destination), function(err, res){
  if (err) {
   console.error(err.stack);
   process.exit(1);
  }
  else {
    console.log('File saved to ', res.filename);
  }
});

from node-html-pdf.

marcbachmann avatar marcbachmann commented on July 18, 2024

Please let me know if you need more information.

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.