node-poppler 6.1.1 → 6.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,18 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/Fdawgs/node-poppler/releases/latest/)
|
|
4
4
|
[](https://npmjs.com/package/node-poppler)
|
|
5
|
-

|
|
6
|
+
[](https://coveralls.io/github/Fdawgs/node-poppler?branch=main)
|
|
7
7
|
[](https://github.com/prettier/prettier)
|
|
8
8
|
|
|
9
9
|
> Asynchronous node.js wrapper for the Poppler PDF rendering library
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Overview
|
|
12
12
|
|
|
13
13
|
[Poppler](https://poppler.freedesktop.org/) is a PDF rendering library that also includes a collection of utility binaries, which allows for the manipulation and extraction of data from PDF documents such as converting PDF files to HTML, TXT, or PostScript.
|
|
14
14
|
|
|
15
15
|
The `node-poppler` module provides an asynchronous node.js wrapper around said utility binaries for easier use.
|
|
16
|
-
It was created out of a need for a PDF-to-HTML conversion module at [Yeovil District Hospital NHS Foundation Trust](https://yeovilhospital.co.uk/) to convert clinical documents.
|
|
17
16
|
|
|
18
17
|
## Installation
|
|
19
18
|
|
|
@@ -23,7 +22,7 @@ Install using `npm`:
|
|
|
23
22
|
npm i node-poppler
|
|
24
23
|
```
|
|
25
24
|
|
|
26
|
-
### Linux and macOS/Darwin
|
|
25
|
+
### Linux and macOS/Darwin support
|
|
27
26
|
|
|
28
27
|
Windows binaries are provided with this repository.
|
|
29
28
|
For Linux users, you will need to download the `poppler-data` and `poppler-utils` binaries separately.
|
|
@@ -54,7 +53,7 @@ const poppler = new Poppler("/usr/bin");
|
|
|
54
53
|
const { Poppler } = require("node-poppler");
|
|
55
54
|
```
|
|
56
55
|
|
|
57
|
-
[**API Documentation can be found here**](https://github.com/Fdawgs/node-poppler/blob/
|
|
56
|
+
[**API Documentation can be found here**](https://github.com/Fdawgs/node-poppler/blob/main/API.md)
|
|
58
57
|
|
|
59
58
|
## Examples
|
|
60
59
|
|