msoconvert

0.3.0 • Public • Published

msoconvert

Convert Word and Excel documents in Node.js (for Windows only). This is a wrapper around DocTo.

Microsoft Word/Excel must be installed on the system.

Installation

npm install msoconvert --save

Usage

const convert = require("msoconvert");

// All the folling options are strings:
convert({ 
  input, // Input file or directory path.
  output, // Output file or directory path.

  // The two following only apply if input is a directory:
  inputExt, // Extension to search for if directory.
  outputExt, // Output extension.

  // Recommended:
  encoding, // Output encoding (see below).

  // Additional options:
  use, // "word" (default) | "excel" | "powerpoint"
  format, // wdSaveFormat for output (see below).
  options // Additional arguments passed to docto.exe. Refer to DocTo documentation.
})
  // A promise is returned.
  .then(() => console.log("done"));

See DocTo documentation for more information about API and additional parameters.

encoding

Available encodings can be found in enums/msoencodings.json. It is possible to avoid the msoencoding prefix.

If encoding is not defined, msoconvert will use the default encoding defined in MS Office application settings. It is recommended to always define an encoding.

format

wdSaveFormat enums:

If format is not defined, msoconvert will try to guess the format from outputExt if provided (otherwise an error will be thrown).

Package Sidebar

Install

npm i msoconvert

Weekly Downloads

1

Version

0.3.0

License

MIT

Unpacked Size

1.98 MB

Total Files

9

Last publish

Collaborators

  • brrd