UNPKG
pdf-convert-docx
Version:
latest (1.0.0)
1.0.0
0.0.1
convert .pdf file to .docx easily
github.com/KCH6937/pdf-to-docx
KCH6937/pdf-to-docx
pdf-convert-docx
/
README.md
15 lines
(9 loc)
•
266 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# pdf-convert-docx Library
**convert .pdf
file
to .docx
file
easily**
## Installation
`npm install pdf-convert-docx`
## Usage - Local Files
```js
const
converter = require(
'pdf-convert-docx'
); converter.convertDocx(
'[filepath]'
,
'example.pdf'
);
// convert
```