How To Read File From Amazon S3 Bucket Using Node.Js ? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The AWS Simple Storage Service (S3) is a cloud service provided by Amazon Web Services (AWS) to store your data securely. There are different approaches to storing and retrieving data from AWS S3; one of them is by using aws-sdk provided by Amazon Web Services. In this article, we will provide you with step-by-step instructions on how to use aws-sdk to upload and retrieve files from Amazon S3 securely. What Is Amazon S3?Amazon S3 is a simple storage service provided by Amazon Web Services. It is highly durable and provides security and scalability to any kind of data. This data is stored as objects within resources called buckets. There are several approaches to storing and retrieving data from the S3 bucket. One of them is using the aws-sdk provided by AWS. This can be installed on any node application to communicate with the S3 bucket. Reading A File From Amazon S3 Bucket Using Node JsCreate an AWS account and an IAM Role. Identity and Access Management (IAM) helps you secure the services you want to use by providing authentication and authorization as per your team's requirements. Use the IAM role for accessing the S3 bucket data instead of directly using your main or root account. Step 1: Create An Amazon S3 BucketSign in to your Amazon console and navigate to Amazon S3. Click on Create bucket to proceed.Step 2: Configure The Amazon S3 BucketSelect an AWS Region and enter a unique bucket name to create a new bucket.Upon successful creation, you can see the list of buckets in the AWS Management Console.Now, your bucket is ready to be integrated into the node application. Setting Up AWS SDK On Your Node ServerStep 4: Installation And Set Up Install aws-sdk to communicate with the AWS S3.Install the fs library for read and write operations of the file.npm install aws-sdk fsStep 5: Connect Node Service To The Amazon S3 BucketCreate an object using aws-sdk by passing accessKeyID, secretAccessKey and region in your environment variables. Make sure you've created an IAM role with appropriate permission. Update the region where the bucket is stored.Check the below code for better understanding.Upload A File On The Amazon S3 bucketStep 6: Prepare The File To Be UploadedAdd a file in your project which needs to be uploaded on the S3 bucket. Store the file content in a variable using readFileSync() by passing the path of the file as parameter.Create parameters to be passed to the S3 function to upload the file. Bucket: Name of the bucket in which you want to store the file.Key: Name of the file you want to be reflected once it's uploaded on the S3 Bucket.Body: The content of the file. In the below code, you can see we have added the file image-to-s3.png in our root folder and stored it in the fileContent variable. Step 7: Write The Function To Upload File To Amazon S3 BucketUse the upload() provided by aws-sdk to upload the file by passing the parameter object created in the previous step.Implement error handling to evaluate if the file has been uploaded successfully.Step 8: ExecutionRun the following command to execute the function.node index.jsStep 9: Verify if file is visible on the S3 bucket.Go to the Amazon S3 console and check if the file is visible on the Objects tab.You can see that the file image-to-s3 is visible in the list of files. You can view and update the permissions of the file by navigating to the Permissions tab as per below image.There is one more file Node_to_aws_GFG.drawio.png available in the list. Let's check how can we download that file from our Node js application. Retrieve The File From Amazon S3 bucket Step 10: Create a Write Stream to download the file. Create a write stream to store the file which will be downloaded by using createWriteStream() provided by fs.Add the path where you want this file to be downloaded.We have created an uploads folder in our project root folder and named the new file as newFile.png. Once the file is downloaded, it should be visible in the uploads folder.Step 11: Create The Parameter ObjectCreate a parameter object to download the file from the S3 bucket. Bucket: The name of the bucket from where you want to retrieve the file.Key: Name of the file in the S3 bucket you want to download.Step 12: ExecutionRun the following command to execute the function.node index.jsThe downloaded file is visible in the uploads folder.Open the file to check the content and verify it with your original fileIn this way we can retrieve a file from the AWS S3 Bucket. Comment More infoAdvertise with us Next Article What is DevOps ? A aishadeshmukh Follow Improve Article Tags : Amazon Web Services DevOps Dev Scripter AWS Dev Scripter 2024 +1 More Similar Reads DevOps Tutorial DevOps is a combination of two words: "Development" and "Operations." Itâs a modern approach where software developers and software operations teams work together throughout the entire software life cycle.The goals of DevOps are:Faster and continuous software releases.Reduces manual errors through a 7 min read IntroductionWhat is DevOps ?DevOps is a modern way of working in software development in which the development team (who writes the code and builds the software) and the operations team (which sets up, runs, and manages the software) work together as a single team.Before DevOps, the development and operations teams worked sepa 10 min read DevOps LifecycleThe DevOps lifecycle is a structured approach that integrates development (Dev) and operations (Ops) teams to streamline software delivery. It focuses on collaboration, automation, and continuous feedback across key phases planning, coding, building, testing, releasing, deploying, operating, and mon 10 min read The Evolution of DevOps - 3 Major Trends for FutureDevOps is a software engineering culture and practice that aims to unify software development and operations. It is an approach to software development that emphasizes collaboration, communication, and integration between software developers and IT operations. DevOps has come a long way since its in 7 min read Version ControlVersion Control SystemsA Version Control System (VCS) is a tool used in software development and collaborative projects to track and manage changes to source code, documents, and other files. Whether you are working alone or in a team, version control helps ensure your work is safe, organized, and easy to collaborate on. 5 min read Merge Strategies in GitIn Git, merging is the process of taking the changes from one branch and combining them into another. The merge command in Git will compare the two branches and merge them if there are no conflicts. If conflicts arise, Git will ask the user to resolve them before completing the merge.Merge keeps all 4 min read Which Version Control System Should I Choose?While building a project, you need a system wherein you can track the modifications made. That's where Version Control System comes into the picture. It came into existence in 1972 at Bell Labs. The very first VCS made was SCCS (Source Code Control System) and was available only for UNIX. When any p 5 min read Continuous Integration (CI) & Continuous Deployment (CD)What is CI/CD?CI/CD is the practice of automating the integration of code changes from multiple developers into a single codebase. It is a software development practice where the developers commit their work frequently to the central code repository (Github or Stash). Then there are automated tools that build the 10 min read Understanding Deployment AutomationIn this article we will discuss deployment automation, categories in Automated Deployment, how automation can be implemented in deployment, how it is assisting DevOps and finally the benefits and drawbacks of Deployment Automation. So, let's start exploring the topic in detail. Deployment Automation 4 min read ContainerizationWhat is Docker?Have you ever wondered about the reason for creating Docker Containers in the market? Before Docker, there was a big issue faced by most developers whenever they created any code that code was working on that developer computer, but when they try to run that particular code on the server, that code 12 min read What is Dockerfile Syntax?Pre-requsites: Docker,DockerfileA Dockerfile is a script that uses the Docker platform to generate containers automatically. It is essentially a text document that contains all the instructions that a user may use to create an image from the command line. The Docker platform is a Linux-based platfor 5 min read Kubernetes - Introduction to Container OrchestrationIn this article, we will look into Container Orchestration in Kubernetes. But first, let's explore the trends that gave rise to containers, the need for container orchestration, and how that it has created the space for Kubernetes to rise to dominance and growth. The growth of technology into every 4 min read OrchestrationKubernetes - Introduction to Container OrchestrationIn this article, we will look into Container Orchestration in Kubernetes. But first, let's explore the trends that gave rise to containers, the need for container orchestration, and how that it has created the space for Kubernetes to rise to dominance and growth. The growth of technology into every 4 min read Fundamental Kubernetes Components and their role in Container OrchestrationKubernetes or K8s is an open-sourced container orchestration technology that is used for automating the manual processes of deploying, managing and scaling applications by the help of containers. Kubernetes was originally developed by engineers at Google and In 2015, it was donated to CNCF (Cloud Na 12 min read How to Use AWS ECS to Deploy and Manage Containerized Applications?Containers can be deployed for applications on the AWS cloud platform. AWS has a special application for managing containerized applications. Elastic Container Service (ECS) serves this purpose. ECS is AWS's container orchestration tool which simplifies the management of containers. All the containe 4 min read Infrastructure as Code (IaC)What is Infrastructure as Code (IaC)?Infrastructure as Code (IaC) is a method of managing and provisioning IT infrastructure using code rather than manual configuration. It allows teams to automate the setup and management of their infrastructure, making it more efficient and consistent. This is particularly useful in the DevOps enviro 7 min read Introduction to TerraformMany people wonder why we use Terraform when there are already so many Infrastructure as Code (IaC) tools out there. So, before learning Terraform, letâs understand why it was created.Terraform was made to solve some common problems with existing IaC tools. Some tools, like AWS CloudFormation, only 15 min read What is AWS Cloudformation?Amazon Web Services(AWS) offers cloud formation as a service by which you can provision and manage complicated services offered by AWS by using the code. CloudFormation will help you to manage the infrastructure and the services in the form of a declarative way. Table of ContentIntroduction to AWS C 14 min read Monitoring and LoggingWorking with Prometheus and Grafana Using HelmPre-requisite: HELM Package Manager Helm is a package manager for Kubernetes that allows you to install, upgrade, and manage applications on your Kubernetes cluster. With Helm, you can define, install, and upgrade your application using a single configuration file, called a Chart. Charts are easy to 5 min read Working with Monitoring and Logging ServicesPre-requisite: Google Cloud Platform Monitoring and Logging services are essential tools for any organization that wants to ensure the reliability, performance, and security of its systems. These services allow organizations to collect and analyze data about the health and behavior of their systems, 5 min read Microsoft Teams vs Slack Both Microsoft Teams and Slack are the communication channels used by organizations to communicate with their employees. Microsoft Teams was developed in 2017 whereas Slack was created in 2013. Microsoft Teams is mainly used in large organizations and is integrated with Office 365 enhancing the feat 4 min read Security in DevOpsWhat is DevSecOps: Overview and ToolsDevSecOps methodology is an extension of the DevOps model that helps development teams to integrate security objectives very early into the lifecycle of the software development process, giving developers the team confidence to carry out several security tasks independently to protect code from adva 10 min read DevOps Best Practices for KubernetesDevOps is the hot topic in the market these days. DevOps is a vague term used for wide number of operations, most agreeable defination of DevOps would be that DevOps is an intersection of development and operations. Certain practices need to be followed during the application release process in DevO 11 min read Like