Error: Cant find module "lodash.isfunction"

Hi Guys!

So I got an error when execute it. Im using javascript node and using exceljs library to be used in the node (for generate excel file) I got an error when execute it. The error said the module called lodash.isfunction inside the fast-csv is missing. Although I already install fast-csv, lodash.isfunction, exceljs and lodash

Error Messages:
Cannot find module ‘lodash.isfunction’ Require stack: - /usr/local/lib/node_modules/n8n/node_modules/exceljs/node_modules/@fast-csv/format/build/src/formatter/RowFormatter.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/node_modules/@fast-csv/format/build/src/formatter/index.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/node_modules/@fast-csv/format/build/src/CsvFormatterStream.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/node_modules/@fast-csv/format/build/src/index.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/node_modules/fast-csv/build/src/index.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/lib/csv/csv.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/lib/doc/workbook.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/lib/exceljs.nodejs.js - /usr/local/lib/node_modules/n8n/node_modules/exceljs/excel.js - /usr/local/lib/node_modules/n8n/node_modules/@n8n/task-runner/dist/js-task-runner/require-resolver.js - /usr/local/lib/node_modules/n8n/node_modules/@n8n/task-runner/dist/js-task-runner/js-task-runner.js - /usr/local/lib/node_modules/n8n/node_modules/@n8n/task-runner/dist/start.js

output returned by the last node: none

And here is my workflow:

Hey @Bryann hope all is well. Welcome to the community.

Not sure about compatibility of this module, but I know xlsx works.
const XLSX = require('xlsx');

Have you considered using it?