n8n-nodes-parser-bigboss 1.0.3 โ 1.0.5
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 +63 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# ๐งฉ n8n-nodes-parser-bigboss
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/js/n8n-nodes-parser-bigboss)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
**Parser BigBoss** is the ultimate utility for turning messy AI output into structured data. It automatically detects and cleans JSON, YAML, and XML from any text block, ensuring your workflows never break due to a trailing comma or extra markdown from an LLM.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ๐ Key Features
|
|
11
|
+
|
|
12
|
+
- **Smart Auto-Detect**: Automatically finds and extracts structured data hidden inside large text blocks or markdown code blocks.
|
|
13
|
+
- **Loose JSON Parsing**: Uses **JSON5** to handle common AI mistakes like trailing commas, single quotes, or missing property quotes.
|
|
14
|
+
- **Multi-Format Support**: One node to rule them all: **JSON, YAML, and XML**.
|
|
15
|
+
- **Flexible Error Handling**: Choose to return `null`, the original text, or trigger a node error when parsing fails.
|
|
16
|
+
- **Output Control**: Spread properties directly to the node output or wrap them in a specific property name.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## ๐น๏ธ Parsing Strategies
|
|
21
|
+
|
|
22
|
+
### 1. **Auto-Detect (Smart)**
|
|
23
|
+
The BigBoss choice. It scans the text, identifies the likely format, handles markdown stripping, and returns parsed data instantly.
|
|
24
|
+
|
|
25
|
+
### 2. **Extract JSON**
|
|
26
|
+
Forces JSON extraction. Optimized for cleaning LLM responses that include chatty text before or after the JSON block.
|
|
27
|
+
|
|
28
|
+
### 3. **Extract YAML / XML**
|
|
29
|
+
Reliable extraction for configuration files or legacy system outputs.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## ๐ ๏ธ Usage
|
|
34
|
+
|
|
35
|
+
1. **Input Text**: Pass the raw text from an OpenAI, Anthropic, or any LLM node.
|
|
36
|
+
2. **Select Strategy**: Usually, `Auto-Detect (Smart)` is all you need.
|
|
37
|
+
3. **Handle Errors**: Set your preference for failed parses (e.g., return original text for manual review).
|
|
38
|
+
4. **Result**: Your workflow continues with perfectly structured JSON objects.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## ๐ฅ Installation
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm install n8n-nodes-parser-bigboss
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## ๐๏ธ Build from Source
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
npm install
|
|
52
|
+
npm run build
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## ๐ The BigBoss Standard
|
|
58
|
+
Part of the **BigBoss** ecosystemโn8n nodes built for reliability, scale, and professional workflows. Say goodbye to "JSON Parse Error" forever.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-parser-bigboss",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Smart parser node for AI outputs - extracts and structures JSON/YAML/XML/Lists dynamically.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -51,4 +51,4 @@
|
|
|
51
51
|
"prettier": "^2.8.8",
|
|
52
52
|
"tslint": "^6.1.3"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|