I'm trying to read an excel file present in S3 using node.js integrated with lambda. I mean the code should interact with excel file and display the output. Please help me in this issue.
相关问题
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- Excel sunburst chart: Some labels missing
- google-drive can't get push notifications
- How to reimport module with ES6 import
- Why is `node.js` dying when called from inside pyt
相关文章
- node连接远程oracle报错
- how many objects are returned by aws s3api list-ob
- How can make folder with Firebase Cloud Functions
- AWS S3 in rails - how to set the s3_signature_vers
- @angular-cli install fails with deprecated request
- Get column data by Column name and sheet name
- node.js modify file data stream?
- How to resolve hostname to an ip address in node j
To read a file from S3 in AWS lambda with nodejs you can follow given steps. To read data from excel file in node js, I prefer
xlsx
package. To use it, first you need to installxlsx
node package and then proceed as given -Then you can read excel file as -