0.0.2 • Published 9 years ago

office2pdf v0.0.2

Weekly downloads
52
License
MIT
Repository
github
Last release
9 years ago

office2pdf

node module to convert office files to pdf

requires unoconv to be installed https://github.com/dagwieers/unoconv

convert office files (docx, pptx, xlsx) to an pdf document

Usage:

var office2pdf = require(office2pdf),
  generatePdf = office2pdf.generatePdf;

generatePdf('test/test.pptx', function(err, result) {
  console.log(result);
});