Package Information
Available Nodes
Documentation
n8n-nodes-converter-documents
📄 Description
This is a custom node for n8n designed to convert various file formats to JSON or text format. Supported formats: DOCX, XML, YML, XLSX, CSV, PDF, TXT, PPTX, HTML/HTM, ODT, ODP, ODS, JSON.
⚠️ Important Note about Legacy Microsoft Office Files
- DOCX (Word 2007+) - ✅ Fully supported
- DOC (Word 97-2003) - ❌ Not supported due to legacy CFB format limitations
- PPTX (PowerPoint 2007+) - ✅ Fully supported
- PPT (PowerPoint 97-2003) - ❌ Not supported due to legacy CFB format limitations
- XLSX (Excel 2007+) - ✅ Fully supported
✨ OpenDocument Format Support
- ODT (OpenDocument Text) - ✅ LibreOffice Writer documents
- ODP (OpenDocument Presentation) - ✅ LibreOffice Impress presentations
- ODS (OpenDocument Spreadsheet) - ✅ LibreOffice Calc spreadsheets
🛒 Yandex Market YML Support
- YML (Yandex Market Catalog) - ✅ Specialized parsing for Yandex Market product feeds
- Automatic detection of YML catalog structure (
yml_catalogroot element) - Structured extraction of shop information, categories, and product offers
- Statistical analysis (total products, available/unavailable items)
- Parameter and attribute processing
- Fallback to regular XML parsing for non-Yandex YML files
- Automatic detection of YML catalog structure (
🔄 JSON Processing
- JSON files with automatic structure normalization - complex nested objects are flattened for easier processing
Note: If you have old DOC/PPT files, please save them as DOCX/PPTX in Microsoft Office and try again.
🏗️ Architecture & Performance Optimizations
The node uses a hybrid approach with officeparser as the primary library for most document formats, with intelligent fallbacks:
- Primary:
officeparser(supports DOCX, PPTX, XLSX, PDF, ODT, ODP, ODS) - Fallback for DOCX:
mammoth(if officeparser fails) - Fallback for PDF:
pdf-parse(if officeparser fails) - Excel structure:
ExcelJS(for structured data extraction) - HTML/XML:
cheerio+xml2js - CSV:
papaparse - JSON: Built-in normalization with structure flattening
This approach provides:
- ✅ Better format compatibility
- ✅ Improved error handling
- ✅ Performance optimization
- ✅ Reduced dependency complexity
⚠️ Important: Large File Limitations
- PDF, XLSX: The libraries used load the entire file into memory. When processing very large files (tens of megabytes, hundreds of thousands of rows), crashes, freezes, and memory limit exceeded errors are possible. For such cases, it's recommended to split files into smaller parts.
🔒 Security and Validation
- Input data undergoes strict validation (type, structure, size, presence of binary data)
- For HTML/HTM, sanitize-html is used to protect against XSS and malicious scripts
- Security updates: Replaced vulnerable libraries with secure alternatives (textract → officeparser)
- Regular dependency checks using npm audit and audit-ci
🚀 Features
- Automatic file type detection by extension or content
- Text or table extraction from popular office and text formats
- OpenDocument support: ODT, ODP, ODS files from LibreOffice/OpenOffice
- JSON normalization: Automatic flattening of nested JSON structures
- Output data:
{ text: "..." }or{ sheets: {...} }+ metadata (name, size, file type, processing time) - Large file processing (up to 50 MB for most formats)
- Messages for empty or unsupported files
- Protection against malicious data and XSS
- Clear error messages for unsupported formats (e.g., old PPT files)
📚 Libraries Used
This project uses modern, actively maintained libraries:
- officeparser (v5.1.1) - Primary document parser with built-in PDF.js support
- ExcelJS (v4.4.0) - Excel file processing with full feature support
- mammoth (v1.9.1) - DOCX fallback processor
- pdf-parse (v1.1.1) - PDF fallback processor
- cheerio (v1.1.0) - HTML/XML processing
- papaparse (v5.5.3) - CSV processing
- xml2js (v0.6.2) - XML parsing
🔧 CI/CD and Code Quality
- GitHub Actions: automatic testing on Node.js 18.x and 20.x
- Linting: ESLint with TypeScript support
- Testing: Jest with code coverage
- Security: automatic vulnerability checks
- Build: TypeScript compilation with type checking
📊 Input and Output Data Examples
Input:
- Binary file (e.g., DOCX, PDF, XLSX, etc.) in the
datafield
Output:
For text formats:
{
"text": "Extracted text...",
"metadata": {
"fileName": "example.docx",
"fileSize": 12345,
"fileType": "docx",
"processedAt": "2024-06-01T12:00:00.000Z"
}
}
For tabular formats:
{
"sheets": {
"Sheet1": [ { "A": "Value1", "B": "Value2" }, ... ]
},
"metadata": {
"fileName": "example.xlsx",
"fileSize": 23456,
"fileType": "xlsx",
"processedAt": "2024-06-01T12:00:00.000Z"
}
}
For JSON normalization:
Input JSON:
{
"user": {
"name": "John",
"address": {
"city": "Moscow",
"country": "Russia"
}
}
}
Output:
{
"text": "{\n \"user.name\": \"John\",\n \"user.address.city\": \"Moscow\",\n \"user.address.country\": \"Russia\"\n}",
"warning": "Multi-level JSON structure was converted to flat object",
"metadata": {
"fileName": "data.json",
"fileSize": 156,
"fileType": "json",
"processedAt": "2024-06-01T12:00:00.000Z"
}
}
For Yandex Market YML files:
Input YML:
<?xml version="1.0" encoding="UTF-8"?>
<yml_catalog date="2024-01-15 12:00">
<shop>
<name>Test Shop</name>
<categories>
<category id="1">Electronics</category>
</categories>
<offers>
<offer id="12345" available="true">
<name>Smartphone</name>
<price>50000</price>
<vendor>Apple</vendor>
</offer>
</offers>
</shop>
</yml_catalog>
Output:
{
"text": "{\n \"yandex_market_catalog\": {\n \"shop_info\": {\n \"name\": \"Test Shop\",\n \"date\": \"2024-01-15 12:00\"\n },\n \"categories\": [\n {\"id\": \"1\", \"name\": \"Electronics\"}\n ],\n \"offers\": [\n {\n \"id\": \"12345\",\n \"name\": \"Smartphone\",\n \"price\": \"50000\",\n \"vendor\": \"Apple\",\n \"available\": \"true\"\n }\n ],\n \"statistics\": {\n \"total_categories\": 1,\n \"total_offers\": 1,\n \"available_offers\": 1,\n \"unavailable_offers\": 0\n }\n }\n}",
"metadata": {
"fileName": "catalog.yml",
"fileSize": 512,
"fileType": "yml",
"processedAt": "2024-06-01T12:00:00.000Z"
}
}
📁 Project Structure
src/— source code folder (main logic)helpers.ts— helper functionserrors.ts— custom error classestest/— test files and unit tests folderpackage.json— dependencies and scripts file.github/workflows/— CI/CD configuration.gitignore— excludes node_modules, dist and temporary files from git
📦 Installing Dependencies
All necessary dependencies are installed via npm:
npm install
💻 Development
# Install dependencies
npm install
# Build project
npm run build
# Run tests
npm test
# Tests with coverage
npm run test:coverage
# Linting
npm run lint
# Fix linting
npm run lint:fix
# Development with automatic rebuild
npm run dev
💡 Recommendations
- To add new formats, you'll need to add the corresponding library and handler to the main file
- For n8n integration, make sure the node is correctly connected to your system
- For working with very large PDF, XLSX files, use preprocessing or third-party tools
- For security, always update dependencies and keep sanitize-html up to date
- Regularly check for vulnerabilities using
npm audit
🔨 Build and Use with TypeScript
To build the project, run:
npm run buildThe resulting files will appear in the
dist/folder.To use the custom node in n8n, specify the path to
dist/FileToJsonNode.node.js.Main file for n8n:
dist/FileToJsonNode.node.js(seemainfield in package.json).
🚀 Usage in n8n
Update v1.0.10: Fixed support for ODT, ODP, ODS, JSON formats + improved architecture ✅
Option 1: Install as npm package (recommended)
Or via n8n web interface:
- Open Settings → Community nodes
- Enter:
@mazix/n8n-nodes-converter-documents - Click Install
Option 2: Standalone version (easiest way)
Create standalone version:
git clone https://github.com/mazixs/n8n-node-converter-documents.git cd n8n-node-converter-documents npm install npm run standaloneCopy to n8n:
cp -r ./standalone ~/.n8n/custom-nodes/n8n-node-converter-documents cd ~/.n8n/custom-nodes/n8n-node-converter-documents npm installRestart n8n
Option 3: Manual installation
Copy files to custom nodes folder:
mkdir -p ~/.n8n/custom-nodes/n8n-node-converter-documents cp dist/* ~/.n8n/custom-nodes/n8n-node-converter-documents/ cp package.json ~/.n8n/custom-nodes/n8n-node-converter-documents/Install dependencies in custom node folder:
cd ~/.n8n/custom-nodes/n8n-node-converter-documents npm install --productionRestart n8n
Option 4: Global dependency installation
If you have administrator rights, you can install dependencies globally:
npm install -g chardet cheerio exceljs file-type iconv-lite mammoth officeparser papaparse pdf-parse sanitize-html xml2js
Then copy only the main node file:
cp dist/FileToJsonNode.node.js ~/.n8n/custom-nodes/
🔧 Troubleshooting
If you see an error Cannot find module 'exceljs' (or other modules):
- Use standalone version - this is the most reliable method
- Make sure dependencies are installed in the correct folder
- Check access permissions to
~/.n8n/custom-nodes/folder - Use npm package option instead of custom nodes
Installation Check
After installation, you can verify the node is working:
# Check that files are copied
ls -la ~/.n8n/custom-nodes/n8n-node-converter-documents/
# Check that dependencies are installed
cd ~/.n8n/custom-nodes/n8n-node-converter-documents/
npm list
📋 Supported File Formats
- Text formats: DOCX, ODT, TXT, PDF
- Spreadsheet formats: XLSX, ODS, CSV (XLS is not supported - please convert to XLSX)
- Presentation formats: PPTX, ODP (PPT is not supported - please convert to PPTX)
- Web formats: HTML, HTM
- Data formats: XML, JSON (with structure normalization)
📈 Latest Updates
v1.0.10 (2025-06-20)
- 🐛 Critical Fix: Restored support for ODT, ODP, ODS and JSON formats
- Fixed "Unsupported file type" error for these formats
- Format handlers were implemented but not accessible due to configuration oversight
v1.0.9 (2025-06-20)
- 🔧 CI/CD: Fixed Jest compatibility issues
- Updated Jest command parameters for Jest 30+ compatibility
- All CI tests now pass successfully
If you need documentation for any module or help with integration — feel free to ask!