0

I am looking for ODS parser in node.js. Currently I am using excel-parser for parsing xls and xlsx but it cant parse ODS files.

I looked for other npm modules but no one is supporting ODS files.

I tried this one but its giving me error "unsupported file type".

Please help.

1 Answers1

0

You can try to use xlsx

  if(typeof require !== 'undefined') XLSX = require('xlsx');
  var workbook = XLSX.readFile('test.ods');
Nyalotha
  • 369
  • 3
  • 8