1

I am trying to export data from table to pdf in order to let user download it. However, I try this solution, it didn't worked My npm install faced an error during installation

My npm error here

Is there any solution to this?

Lawraoke
  • 540
  • 5
  • 25
8-bit
  • 58
  • 7

1 Answers1

1

Try this

var tableExport = require('table-export');
tableExport('myTable', 'myName', 'pdf');

Following attributes from tableExport are tablename, filename, the file type

Lawraoke
  • 540
  • 5
  • 25