Skip to content

Interfacing/tfk-api-unoconv

 
 

Repository files navigation

Build Status js-standard-style

tfk-api-unoconv

Unoconv as a webservice

Docker

Build image

$ docker build -t unoconv-webservice .

Run image

$ docker run -d -p 80:3000 --name unoconv-webservice unoconv-webservice

Usage

Post the file you want to convert to the server and get the converted file in return.

See all possible conversions on the unoconv website.

API for the webservice is /unoconv/{format-to-convert-to} so a docx to pdf would be

$ curl --form [email protected] http://localhost/unoconv/pdf > myfile.pdf

Formats

To see all possible formats for convertion visit /unoconv/formats

To see formats for a given type /unoconv/formats/{document|graphics|presentation|spreadsheet}

Versions

To see all versions of unoconv and dependencies lookup /unoconv/versions

Environment

You can change the webservice port and filesize-limit by changing environment variables.

SERVER_PORT default is 3000

PAYLOAD_MAX_SIZE default is 1048576 (1 MB)

Change it in the Dockerfile or create an env-file and load it at containerstart

$ docker run --env-file=docker.env -d -p 80:3000 --name unoconv-webservice unoconv-webservice

License

MIT

tfk-api-unoconv

About

Unoconv as a webservice

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%