Muy buenad grupo me da este error en node Code:
Cannot find module ‘xlsx’ [line 1, for item 0] VMError
¿Sabeis el porque? Thanks
Muy buenad grupo me da este error en node Code:
Cannot find module ‘xlsx’ [line 1, for item 0] VMError
¿Sabeis el porque? Thanks
This error occurs because the ‘xlsx’ module isn’t installed in your n8n environment. To fix this:
1. Access your n8n Docker container using `docker exec -it n8n bash`
2. Run `npm install xlsx` to install the module
After installation, the `require(‘xlsx’)` should work properly. Make sure to restart your n8n instance if needed.