
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
unoconv-server
Advanced tools
A simple RESTful server for converting documents using unoconv
unoconv is required for converting documents
# apt-get install unoconv
npm install unoconv-server
Start a server in command-line:
./unoconv-server start
Get command line help
./unoconv-server --help
unoconv-server, a simple RESTful server for converting documents
please visit https://github.com/alphakevin/unoconv-server
usage: unoconv-server <command> <options>
commands:
start [<hostname>[:<port>]] start the server, default to localhost:4000
help converter get converter help
options:
-h, --help print this help message
Use in your application
const expores = require('express');
const unoconv = require('unoconv-server');
const app = express();
app.use('/unoconv', unoconv());
// ... your own express routes
app.listen(3000);
When the server starts, it will start a listener for better performance, the listener will be stopped together with the server.
The server provides a similar interface like unoconv, you can simply remove -- or - and use /
instead of white-space between the arguments, all after /convert.
POST /convert/format/<format>[/output/<filename>] HTTP/1.1
You can upload file by either of the following method:
multipart/form-data upload with a file field of the file to be converted.Content-Type and Content-Disposition header provided.If the /output/<value> option is provided, the Content-Disposition header will contain the new filename.
The converted document will be directly output from the HTTP response body.
| Name | Description |
|---|---|
HOSTNAME | For server listening hostname |
PORT | For server listening port |
Visit http://127.0.0.1:4000/help, or get help in command-line:
./unoconv-server help converter
Here we use cURL for examples.
multipart/form-datacurl -F file=@example.docx http://127.0.0.1:4000/convert/format/pdf/output/newname.pdf > result.pdf
curl -X POST \
-T "example.docx" \
-H "Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document" \
-H "Content-Disposition: attachment; filename="example.docx"" \
http://127.0.0.1:4000/convert/format/pdf/output/newname.pdf > result.pdf
/e, /export/<value> set export filter options
/f, /format/<value> specify the output format
/F, /field/<value> replace user-defined text field with value
/i, /import/<value> set import filter option string
/o, /output/<value> output basename, filename or directory
/password/<value> provide a password to decrypt the document
unoconv-server can start from docker without source code or npm installed:
docker run -d -p 4000:4000 --name unoconv alphakevin/unoconv-server
This is a simple server and it does not include authorization method, please take your own risk if you want to deploy it public directly.
export, field, import, password options are not tested, it just pass them to unoconv.
MIT
FAQs
Restful server for unoconv
We found that unoconv-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.