user2805884
user2805884

Reputation: 53

How to work with excel files in Node.js

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

Answers (2)

Eric Smekens
Eric Smekens

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

Related Questions