0.1.0 • Published 5 years ago
nodejs-convert-office-pdf v0.1.0
office-convert-pdf
A simple tool to convert word and excel to pdf
Installation
Method 1 - Use Docker Image
docker run -p 8080:8080 bgorhoball/office-convertMethod 2 - Clone Project to Local
npm installCompiles and start local server
npm startUsage
Start server at http://localhost:8080/
Example (sending request with axios)
const pdfInBase64String = await axios.post(
'http://localhost:8080',
`{
"data": "${/*base64String*/}"
}`,
{
headers: {
'Content-Type': 'application/json'
}
}
);0.1.0
5 years ago