@custom-js/n8n-nodes-pdf-toolkit 0.1.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 +25 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# n8n-nodes-pdf-toolkit
|
|
2
|
+
|
|
3
|
+
This package contains a node for n8n that converts HTML to PDF using CustomJS API.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### Locally
|
|
8
|
+
|
|
9
|
+
1. Go to your n8n user data directory
|
|
10
|
+
2. Clone this repository
|
|
11
|
+
3. Run `npm install` and `npm run build`
|
|
12
|
+
4. Restart n8n
|
|
13
|
+
|
|
14
|
+
### Globally
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @customjs/n8n-nodes-pdf-toolkit
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
1. Add the HTML to PDF node to your workflow
|
|
23
|
+
2. Configure your CustomJS API credentials
|
|
24
|
+
3. Input your HTML content
|
|
25
|
+
4. Execute the workflow to generate PDF
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@custom-js/n8n-nodes-pdf-toolkit",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "This is official node for interacting with APIs from customjs.space",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"customjs",
|
|
7
|
+
"pdf",
|
|
8
|
+
"n8n-community-node",
|
|
9
|
+
"pdf-toolkit"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/customjs/n8n-nodes-pdf-toolkit#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/customjs/n8n-nodes-pdf-toolkit/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/customjs/n8n-nodes-pdf-toolkit.git"
|
|
18
|
+
},
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"author": "Julian Szuper",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"n8n": {
|
|
25
|
+
"n8nNodesApiVersion": 1,
|
|
26
|
+
"credentials": [
|
|
27
|
+
"dist/credentials/CustomJsApi.credentials.js"
|
|
28
|
+
],
|
|
29
|
+
"nodes": [
|
|
30
|
+
"dist/nodes/Html2Pdf/Html2Pdf.node.js",
|
|
31
|
+
"dist/nodes/WebsiteScreenshot/WebsiteScreenshot.node.js",
|
|
32
|
+
"dist/nodes/MergePdfs/MergePdfs.node.js"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"n8n-workflow": "^0.141.0",
|
|
37
|
+
"typescript": "~4.8.4",
|
|
38
|
+
"gulp": "^4.0.2",
|
|
39
|
+
"@types/node": "^16.11.7"
|
|
40
|
+
},
|
|
41
|
+
"type": "commonjs",
|
|
42
|
+
"main": "index.js",
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsc && gulp build:icons",
|
|
45
|
+
"dev": "tsc --watch",
|
|
46
|
+
"format": "prettier --write ."
|
|
47
|
+
}
|
|
48
|
+
}
|