🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

unoconv

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unoconv

Wrapper for converting documents with unoconv.

0.1.2
latest
Source
npm
Version published
Weekly downloads
283
-9%
Maintainers
1
Weekly downloads
 
Created
Source

node-unoconv

A node.js wrapper for converting documents with unoconv.

Requirements

Unoconv is required, which requires LibreOffice (or OpenOffice.)

Install

Install with:

npm install unoconv

Converting documents

var unoconv = require('unoconv');

unoconv.convert('document.docx', 'pdf', function (err, result) {
	// result is returned as a Buffer
	fs.writeFile('converted.pdf', result);
});

Starting a listener

You can also start a unoconv listener to avoid launching Libre/OpenOffice on every conversion:

unoconv.listen();

API

unoconv.convert(file, outputFormat, [options], callback)

Converts file to the specified outputFormat. options is an object with the following properties:

  • bin Path to the unoconv binary
  • port Unoconv listener port to connect to

callback gets the arguments err and result. result is returned as a Buffer object.

unoconv.listen([options])

Starts a new unoconv listener. options accepts the same parameters as convert().

Returns a ChildProcess object. You can handle errors by listening to the stderr property:

var listener = unoconv.listen({ port: 2002 });

listener.stderr.on('data', function (data) {
	console.log('stderr: ' + data.toString('utf8'));
});

unoconv.detectSupportedFormats([options], callback)

This function parses the output of unoconv --show to attempt to detect supported output formats.

options is an object with the following properties:

  • bin Path to the unoconv binary

callback gets the arguments err and result. result is an object containing a collection of supported document types and output formats.

Keywords

unoconv

FAQs

Package last updated on 21 Dec 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts