Hi, I am using serverless function with node.js. I have a image and audio folder under packages. where I want to upload multiple files. the uploding content working on my local machine using path and fs module. but I want to do it with serverless function. any idea how can I do that?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
With the DigitalOcean serverless functions, and also any other serverless environment, you don’t have the same persistent filesystem as on your local machine.
Instead, you’ll use temporary storage for the duration of the function’s execution.
What you should do instead is to use an S3 storage like the DigitalOcean Spaces:
You can then use the
@aws-sdk/client-s3
package. Here is a documentation guide on how to do that:Hope that this helps!
- Bobby