docx2pdf
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

Docx2Pdf

Converts docx to pdf.

Installation

Run npm install docx2pdf.

Sample Usage

import docx2pdf from 'docx2pdf';

...
const pdfStream = await docx2pdf('/path/to/file.docx');

// save file to S3
const s3 = await AWS.S3({ apiVersion: '2006-03-1' });
s3.upload({
  Bucket: 'BUCKET_NAME',
  Key: 'OUTPUT_FILE_NAME',
  Body: pdfStream
});

// save to local file
const fpOut = fs.createWriteStream('/path/to/output/file.pdf');
pdfStream.pipe(pdfStream);

// stream the pdf into http response
res.setHeader('content-type', 'application/pdf');
res.pipe(fpStream);

Package Sidebar

Install

npm i docx2pdf

Weekly Downloads

10

Version

0.0.4

License

ISC

Unpacked Size

2.73 kB

Total Files

5

Last publish

Collaborators

  • junlue