A custom n8n node that streamlines the process of converting Excel spreadsheets (XLSX format) into JSON data within an n8n workflow. This module fetches an XLSX file from a given URL, sends it to a REST service for conversion, and returns structured JSON for downstream processing.
- Node.js 14 or later
- npm 6 or later
- TypeScript >=3.3.1 <5.2.0 (Important: This module is not compatible with TypeScript 5.2.0 or newer)
- Simple URL Input: Just provide a URL to your XLSX file
- Field Selection & Renaming: Choose which columns to export and optionally rename them
- Large File Support: Handles Excel files up to 50 MB
- Streaming Processing: Efficiently manages memory usage for large files
- Detailed Logging: Provides comprehensive logs for troubleshooting
- No Authentication Required: The REST conversion service requires no authentication
-
Clone this repository
git clone https://github.com/username/n8n-nodes-xlsx-to-json.git cd n8n-nodes-xlsx-to-json
-
Install dependencies
npm install
-
Build the code
npm run build # or make build
-
Deploy to your n8n custom extensions directory
make deploy
Or use the environment variable to specify a custom location:
N8N_CUSTOM_EXTENSIONS=/path/to/custom make deploy
To install as a global npm package:
npm install -g n8n-nodes-xlsx-to-json
After installation, you can use the "XLSX to JSON Converter" node in your n8n workflows.
When adding this node to your workflow in n8n, you'll need to configure the following:
- File URL: The URL pointing to the XLSX file you want to convert (required)
-
Export Fields: Optional list of fields to export from the spreadsheet
- Format:
Field1, Field2, OriginalField as NewName
- Example:
Name, City as Location, Age
- If not provided, all columns will be exported
- Format:
- Headers Row Index: The row index (1-based) containing the headers/column names (default: 1)
- REST API Endpoint: Default is set to the standard conversion service endpoint, but can be changed if needed
- Timeout: Default is 60 seconds, can be increased for very large files
- Debug Mode: Enable for more detailed logs
- The node downloads the XLSX file from the provided URL
- It prepares the conversion request with any specified parameters
- The file is sent to the REST conversion service
- The service processes the file and returns JSON data
- The node outputs the JSON to your workflow
- File Retrieval: The module begins by downloading the XLSX file from the URL you provide.
- Conversion Request: After obtaining the file, it prepares a request to the REST service, including any export field specifications.
-
REST API Interaction: The module follows a multi-step process with the REST service:
- POST the file to
/api/upload
to get a document ID - GET
/api/documents/$DOCUMENT_ID/sheets
to retrieve sheet names - GET
/api/documents/$DOCUMENT_ID/fields?headers_index=1
to get field names from the specified header row - POST to
/api/documents/$DOCUMENT_ID/parameters
to specify which fields to export and any renaming - GET
/api/documents/$DOCUMENT_ID/export
to receive the final JSON data
- POST the file to
- Output Processing: The result is returned as structured JSON data to your n8n workflow
This example fetches an employee list and extracts specific fields:
- Add the XLSX to JSON node to your workflow
- Set File URL to
https://example.com/data/employees.xlsx
- Set Export Fields to
Name, City as Location
- Run the workflow
Result will be a JSON array like:
[
{
"Name": "Alice",
"Location": "London"
},
{
"Name": "Bob",
"Location": "New York"
}
]
This node works well with:
- HTTP Request nodes (to get the URL dynamically)
- JSON nodes (to further manipulate the output)
- Database nodes (to store the converted data)
- Spreadsheet nodes (to perform additional operations on the data)
- For files approaching 50 MB, consider setting the n8n environment variable
N8N_DEFAULT_BINARY_DATA_MODE=filesystem
for better memory management - Use field selection to limit the amount of data converted when possible
- The conversion process is handled by an external service, keeping the n8n workflow efficient
n8n-nodes-xlsx-to-json/
├── src/
│ ├── nodes/
│ │ └── XlsxToJson/
│ │ ├── XlsxToJson.node.ts # Main node implementation
│ │ ├── XlsxToJson.node.test.ts # Tests
│ │ └── xlsxToJson.svg # Node icon
│ └── index.ts # Entry point
├── dist/ # Compiled output (created on build)
├── Makefile # Build and deployment tasks
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── gulpfile.js # Icon processing during build
└── Readme.md # This documentation
# Build and deploy (default)
make all
# Install dependencies only
make install
# Build the module
make build
# Clean build artifacts
make clean
# Run tests
make test
# Deploy to n8n custom extensions directory
make deploy
# Display help information
make help
# Build the module
npm run build
# Watch for changes during development
npm run dev
# Format code with Prettier
npm run format
# Run linter
npm run lint
# Fix linting issues automatically
npm run lintfix
# Run tests
npm test
-
N8N_CUSTOM_EXTENSIONS
: Custom location for n8n extensions (default: ~/.n8n/custom)
Common errors and their solutions:
- Failed to download file: Check that the URL is valid and the file is accessible
- Conversion service unreachable: Ensure the REST service is running and accessible from your n8n instance
- Invalid JSON response: The conversion service couldn't properly convert the file, check if it's a valid XLSX
- File size exceeds limit: Ensure your file is under 50 MB
The module integrates with a REST service that handles the actual conversion:
- No authentication required
- Supports multipart/form-data uploads for the XLSX file
- Processes field selection and renaming
- Returns JSON data with original or renamed keys
Contributions are welcome! Please feel free to submit a Pull Request.
MIT