Skip to content

A node wrapper for the DocTo tool to convert Word and Excel documents using the installed Microsoft Word and Excel programs.

Notifications You must be signed in to change notification settings

KerimG/node-DocTo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node-DocTo

Support

This package's development is sponsored by Task Force IT-Consulting GmbH.

Task Force IT-Consulting Logo

About

This library is a wrapper around the DocTo-Tool.

From DocTo's README:

Simple utility for converting a Microsoft Word Document '.doc' and Microsoft Excel '.xls' files to any other supported format such as .txt .csv .rtf .pdf.

Motivation

The main motivation was to convert .doc(x) files to PDF. While there are many tools out there that can do this, they often break the layout or design of the document, because they're using a different PDF renderer than Microsoft Word. DocTo uses the installed Microsoft Word and its PDF-renderer to create its output. As such, they end up looking exactly as you expect them to.

There are two obvious drawbacks.

  1. You must have Microsoft Word/Excel installed on the system
  2. Due to point 1, this tool isn't cross-platform

Usage

Example:

const { wordToPdf } = require('node-docto');

wordToPdf('./input.docx', './output.pdf', {deleteOriginal: true})
  .then(stdout => console.log(stdout));

API Reference

wordToPdf(source, output[, options])

parameters:
  source: path to source .doc or .docx file
  output: path and filename of the output .pdf file
  options: object with options

returns:
  Promise:
    reject: ({err, stderr})
    resolve: (stdout)
wordToText(source, output[, options])

parameters:
  source: path to source .doc or .docx file
  output: path and filename of the output .pdf file
  options: object with options

returns:
  Promise:
    reject: ({err, stderr})
    resolve: (stdout)
xlsToCsv(source, output[, options])

parameters:
  source: path to source .doc or .docx file
  output: path and filename of the output .pdf file
  options: object with options

returns:
  Promise:
    reject: ({err, stderr})
    resolve: (stdout)

The options object:

const options = {
  // converts a certain file type in a directory and its subdirectory
  // not yet implemented
  recursive: false,  

  // deletes original file
  deleteOriginal: false,
  }
}

About

A node wrapper for the DocTo tool to convert Word and Excel documents using the installed Microsoft Word and Excel programs.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published