Reputation: 53
I am new in Node.js development and i don't know how to import excel file in Node.js. And how to display excel data in browser any help related to this will be appreciated Thanks.
Upvotes: 0
Views: 7209
Reputation: 7290
Check those links:
https://npmjs.org/package/excel
&
Node.JS/C++/Python - edit Excel .xlsx file
Upvotes: 1
Reputation: 1621
You can browse on npmjs.org to find a package that helps you in it. For example: https://npmjs.org/package/excel
Or if you want the raw file, you can also use fs: http://nodejs.org/api/fs.html
Upvotes: 0