npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-unoconv

v1.0.5

Published

Lightweight NodeJS wrapper for unoconv, a Universal Office Converter.

Downloads

368

Readme

node-unoconv

Lightweight NodeJS wrapper for unoconv, a Universal Office Converter.

npm npm bundle size npm

📦 Installation

⚙️ Required dependencies

The node-unoconv package requires unoconv and its dependencies to be installed.

Installing LibreOffice or OpenOffice software

Office software is required to run unoconv. LibreOffice is recommended but OpenOffice is still supported.

  • LibreOffice installation

    Please see official installation instructions on the LibreOffice website.
    https://www.libreoffice.org/get-help/install-howto/

    Use command below to install LibreOffice inside Docker container:

    RUN apt-get -y install libreoffice
  • OpenOffice installation

    Please see official installation instructions on the OpenOffice website.
    https://www.openoffice.org/download/common/instructions.html

⚙️ Installing node-unoconv package

After you install required dependencies, the node-unoconv package can be installed using commands below:

npm install node-unoconv

# or using yarn

yarn add node-unoconv

📃 Usage

There are few ways to import node-unoconv package to your NodeJS project:

ES6

// ES6 import
import unoconv from 'node-unoconv';

unoconv.convert(input, options?); // Converting a file
unoconv.listen(options?); // Starting a conversion listener
// Using named exports
import { convert, listen } from 'node-unoconv';

convert(input, options?); // Converting a file
listen(options?); // Starting a conversion listener

Require

// Using Require
const unoconv = require('node-unoconv');

unoconv.convert(input, options?); // Converting a file
unoconv.listen(options?); // Starting a conversion listener
// Alternative way to require convert or listen methods
const { convert, listen } = require('node-unoconv');

convert(input, options?); // Converting a file
listen(options?); // Starting a conversion listener

Converting files

Converts an input file to a format specified in options object (defaults to pdf). By default, a promise is returned that resolves with a buffer or rejects with an error message. A callback function is also supported.

// Convert a file using a promise
unoconv.convert('file.doc')
  .then((buffer) => {
    console.log(buffer.length);
  }.catch((err) => {
    console.error(err);
  });
  
// or with async/await

const buffer = await unoconv.convert('file.doc');

Conversion with an output path and a callback

const callback = (path, error) => {
  if (error) {
    console.error('Error', error);
    return;
  }
  
  console.log('Path:', path);
};

const options = {
  callback,
  output: 'file.pdf'
};
unoconv.convert(path);

Starting a listener

Starts a standalone LibreOffice or OpenOffice listener.
If server or port options are not specified, it uses defaults values 127.0.0.1 and 2002.

unoconv.listen();

Starting a listener on a different address and port

const options = {
  port: 2003,
  server: '127.0.0.1'
};

unoconv.listen(options);

🛠 Options

| Option | Type | Default | Description | | -------------------------- | -------- | ----------- | ----------- | | connection | string | | UNO connection string to be used by the client to connect to an LibreOffice instance, or used by the listener to make LibreOffice listen. | output | string | file.pdf | Output basename, filename or directory. | doctype | string | document | Specify the LibreOffice document type of the backend format. Possible document types are: document, graphics, presentation, spreadsheet. | password | string | | Provide a password to decrypt the document. | server | string | 127.0.0.1 | Server (address) to listen on (as listener) or to connect to (as client). | port | number | 2002 | Port to listen on (as listener) or to connect to (as client). | pipe | | | Use a pipe as an alternative connection mechanism to talk to LibreOffice. | export | string[] | | Set specific export filter options (related to the used LibreOffice filter). | field | string[] | | Replace user-defined text field with value. | format | string | pdf | Specify the output format for the document. You can get a list of possible output formats per document type by using the --show option. Default document type is 'pdf'. | import | string | utf-8 | Set specific import filters options (related to the used LibreOffice import filter based on the input filename). | inputFilterName | string | xml | Set input filter name, useful when converting stdin or files without an extension. | listener | bool | false | Start unoconv as listener for unoconv clients to connect to. It's recommended to start the listener with listen() method. | disableHtmlUpdateLinks | bool | false | Disables the recheck for updating links missed by libreoffice | noLaunch | bool | false | By default if no listener is running, unoconv will launch its own (temporary) listener to make sure the conversion works. This option will abort the conversion if no listener is found, rather than starting our own listener. | preserve | bool | false | Keep timestamp and permissions of the original document. | printer | string[] | | Printer options - PaperFormat: specify printer paper format, eg. PaperFormat=A3- PaperOrientation: specify printer paper orientation, eg. PaperOrientation=landscape- PapserSize: specify printer paper size, paper format should set to USER, size=widthxheight, e.g. eg. PaperSize=130x200 means width=130, height=200

Multiple option values

Multiple values can be passed to an option as an array or as an object literal. See the example below, both ways result in the same command arguments passed to unoconv.

const options = {
  printer: ['PaperFormat=A3', 'PaperOrientation=landscape'],
};

// or

const options = {
  printer: {
    PaperFormat: 'A3',
    PaperOrientation: 'landscape',
  },
};

Example options

const options = {
  connection: 'socket,host=localhost,port=2002;urp;StarOffice.ComponentContext',
  output: 'PDF',
  doctype: 'document',
  password: 'Abc123!@#',
  server: '127.0.0.1',
  port: 2002,
  export: { PageRange: '1-2' },
  field: { foo: 'bar' },
  format: 'PDF',
  import: { Quality: 50 },
  inputFilterName: 'odt',
  disableHtmlUpdateLinks: false,
  noLaunch: true,
  preserve: true,
  printer: ['PaperFormat=A3', 'PaperOrientation=landscape'],
}
{
  connection: '-c',
  disableHtmlUpdateLinks: '--disable-html-update-links',
  doctype: '-d',
  export: '-e',
  field: '-F',
  format: '-f',
  import: '-i',
  importFilterName: '-I',
  listener: '-l',
  noLaunch: '-n',
  output: '-o',
  password: '--password',
  pipe: '--pipe',
  port: '-p',
  preserve: '--preserve',
  printer: '--printer',
  server: '--server',
  show: '--show',
  stdin: '--stdin',
  stdout: '--stdout',
  template: '-t',
  timeout: '-T',
  unsafeQuietUpdate: '--unsafe-quiet-update',
  userProfile: '--user-profile',
  verbose: '--verbose',
};

🚀 Alternatives

| Package | Size | Last commit | Downloads/mo | | --- | --- | --- | --- | | damian66/node-unoconv | npm bundle size | GitHub last commit | npm | | gfloyd/node-unoconv | npm bundle size | GitHub last commit | npm | | zxhaaa6/awesome-unoconv | npm bundle size | GitHub last commit | npm | | vworld4u/office-converter | npm bundle size | GitHub last commit | npm | | ryanhanwu/Unoconv-Promise | npm bundle size | GitHub last commit | npm |