@custom-js/n8n-nodes-pdf-toolkit 0.2.0 → 1.3.0
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 +37 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,25 +1,47 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# @custom-js/n8n-nodes-pdf-toolkit
|
|
4
|
+
|
|
5
|
+
This is an n8n community node. It lets interact with official API of [customJS API](https://www.customjs.space/)
|
|
6
|
+
|
|
7
|
+
This package contains nodes to help you generate PDF from HTML, merge multiple PDF files, and take a screenshot of specific website using URL.
|
|
8
|
+
|
|
9
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
10
|
+
|
|
11
|
+
- [Installation](#installation)
|
|
12
|
+
- [Credentials](#credentials)
|
|
13
|
+
- [Usage](#usage)
|
|
14
|
+
- [Resources](#resources)
|
|
4
15
|
|
|
5
16
|
## Installation
|
|
6
17
|
|
|
7
|
-
|
|
18
|
+
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
8
19
|
|
|
9
|
-
|
|
10
|
-
2. Clone this repository
|
|
11
|
-
3. Run `npm install` and `npm run build`
|
|
12
|
-
4. Restart n8n
|
|
20
|
+
Use the package at [here](https://www.npmjs.com/package/@custom-js/n8n-nodes-pdf-toolkit).
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
## Credentials
|
|
15
23
|
|
|
16
|
-
|
|
17
|
-
npm install -g @customjs/n8n-nodes-pdf-toolkit
|
|
18
|
-
```
|
|
24
|
+
Add your Api Key and store securely
|
|
19
25
|
|
|
20
26
|
## Usage
|
|
21
27
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
28
|
+
### "HTML to PDF" node
|
|
29
|
+
|
|
30
|
+
- Add the HTML to PDF node to your workflow
|
|
31
|
+
- Configure your CustomJS API credentials
|
|
32
|
+
- Input your HTML content
|
|
33
|
+
- Execute the workflow to generate PDF
|
|
34
|
+
|
|
35
|
+
### "Merge PDFs" node
|
|
36
|
+
|
|
37
|
+
- Add the Merge PDFs node to your workflow
|
|
38
|
+
- Configure your CustomJS API credentials
|
|
39
|
+
- Only input binary data to this node.
|
|
40
|
+
- Execute the workflow to get merged PDF file.
|
|
41
|
+
|
|
42
|
+
### "Website Screenshot" node
|
|
43
|
+
|
|
44
|
+
- Add the Website Screenshot node to your workflow
|
|
45
|
+
- Configure your CustomJS API credentials
|
|
46
|
+
- Input your URL of website to take screenshot
|
|
47
|
+
- Execute the workflow to take a screenshot of that website
|