惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园_首页
量子位
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
T
The Blog of Author Tim Ferriss
博客园 - 聂微东
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
D
Docker
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
H
Help Net Security
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Node.js with AWS SDK v3 – A Complete Integration Guide
Dinesh_gowda · 2026-05-08 · via DEV Community

Node.js is a popular choice for building scalable and high-performance server-side applications, and when paired with the AWS SDK v3, it becomes a powerful tool for building cloud-based applications. In this guide, we will cover the integration of Node.js with various AWS services, including S3, Lambda, DynamoDB, SQS, SNS, RDS, CloudWatch, and API Gateway. We will provide real-world code examples and best practices for each service, helping you to get started with building your own cloud-based applications.

Prerequisites & Installation

To get started with this guide, you will need to have Node.js 18 or later installed on your machine. You will also need to install the AWS SDK v3 packages using npm. You can install the required packages using the following command:

npm install @aws-sdk/client-s3 @aws-sdk/client-lambda @aws-sdk/client-dynamodb @aws-sdk/client-sqs @aws-sdk/client-sns @aws-sdk/client-rds @aws-sdk/client-cloudwatch @aws-sdk/client-apigateway

Enter fullscreen mode Exit fullscreen mode

AWS Credentials Setup

To use the AWS SDK v3, you will need to set up your AWS credentials. You can do this by creating a credentials file at ~/.aws/credentials with the following format:

[default]
aws_access_key_id = YOUR_ACCESS_KEY_ID
aws_secret_access_key = YOUR_SECRET_ACCESS_KEY

Enter fullscreen mode Exit fullscreen mode

Alternatively, you can set your credentials as environment variables using the following commands:

export AWS_ACCESS_KEY_ID=YOUR_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY=YOUR_SECRET_ACCESS_KEY

Enter fullscreen mode Exit fullscreen mode

Best Practice: It's a good idea to use environment variables or a credentials file to store your AWS credentials, rather than hardcoding them in your code.

S3

Amazon S3 is a highly durable and scalable object store that can be used to store and retrieve large amounts of data. Here is an example of how to upload a file to S3 using the AWS SDK v3:

const { S3Client, PutObjectCommand } = require('@aws-sdk/client-s3');

const s3Client = new S3Client({ region: 'us-east-1' });

const uploadFile = async () => {
  const bucketName = 'my-bucket';
  const key = 'path/to/file.txt';
  const body = 'Hello World!';

  const params = {
    Bucket: bucketName,
    Key: key,
    Body: body,
  };

  try {
    const data = await s3Client.send(new PutObjectCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

uploadFile();

Enter fullscreen mode Exit fullscreen mode

You can also download a file from S3 using the GetObjectCommand:

const { S3Client, GetObjectCommand } = require('@aws-sdk/client-s3');

const s3Client = new S3Client({ region: 'us-east-1' });

const downloadFile = async () => {
  const bucketName = 'my-bucket';
  const key = 'path/to/file.txt';

  const params = {
    Bucket: bucketName,
    Key: key,
  };

  try {
    const data = await s3Client.send(new GetObjectCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

downloadFile();

Enter fullscreen mode Exit fullscreen mode

Lambda

AWS Lambda is a serverless compute service that allows you to run code without provisioning or managing servers. Here is an example of how to invoke a Lambda function using the AWS SDK v3:

const { LambdaClient, InvokeCommand } = require('@aws-sdk/client-lambda');

const lambdaClient = new LambdaClient({ region: 'us-east-1' });

const invokeLambda = async () => {
  const functionName = 'my-function';
  const payload = { name: 'John Doe' };

  const params = {
    FunctionName: functionName,
    Payload: JSON.stringify(payload),
  };

  try {
    const data = await lambdaClient.send(new InvokeCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

invokeLambda();

Enter fullscreen mode Exit fullscreen mode

DynamoDB

Amazon DynamoDB is a fully managed NoSQL database service that provides high performance and low latency. Here is an example of how to put an item into a DynamoDB table using the AWS SDK v3:

const { DynamoDBClient, PutItemCommand } = require('@aws-sdk/client-dynamodb');

const dynamodbClient = new DynamoDBClient({ region: 'us-east-1' });

const putItem = async () => {
  const tableName = 'my-table';
  const item = {
    id: { S: '123' },
    name: { S: 'John Doe' },
  };

  const params = {
    TableName: tableName,
    Item: item,
  };

  try {
    const data = await dynamodbClient.send(new PutItemCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

putItem();

Enter fullscreen mode Exit fullscreen mode

You can also retrieve an item from a DynamoDB table using the GetItemCommand:

const { DynamoDBClient, GetItemCommand } = require('@aws-sdk/client-dynamodb');

const dynamodbClient = new DynamoDBClient({ region: 'us-east-1' });

const getItem = async () => {
  const tableName = 'my-table';
  const key = {
    id: { S: '123' },
  };

  const params = {
    TableName: tableName,
    Key: key,
  };

  try {
    const data = await dynamodbClient.send(new GetItemCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

getItem();

Enter fullscreen mode Exit fullscreen mode

SQS

Amazon SQS is a fully managed message queuing service that enables you to decouple and scale microservices. Here is an example of how to send a message to an SQS queue using the AWS SDK v3:

const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs');

const sqsClient = new SQSClient({ region: 'us-east-1' });

const sendMessage = async () => {
  const queueUrl = 'https://sqs.us-east-1.amazonaws.com/123456789012/my-queue';
  const messageBody = 'Hello World!';

  const params = {
    QueueUrl: queueUrl,
    MessageBody: messageBody,
  };

  try {
    const data = await sqsClient.send(new SendMessageCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

sendMessage();

Enter fullscreen mode Exit fullscreen mode

You can also receive messages from an SQS queue using the ReceiveMessageCommand:

const { SQSClient, ReceiveMessageCommand } = require('@aws-sdk/client-sqs');

const sqsClient = new SQSClient({ region: 'us-east-1' });

const receiveMessage = async () => {
  const queueUrl = 'https://sqs.us-east-1.amazonaws.com/123456789012/my-queue';

  const params = {
    QueueUrl: queueUrl,
  };

  try {
    const data = await sqsClient.send(new ReceiveMessageCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

receiveMessage();

Enter fullscreen mode Exit fullscreen mode

SNS

Amazon SNS is a fully managed pub/sub messaging service that enables you to decouple and scale microservices. Here is an example of how to publish a message to an SNS topic using the AWS SDK v3:

const { SNSClient, PublishCommand } = require('@aws-sdk/client-sns');

const snsClient = new SNSClient({ region: 'us-east-1' });

const publishMessage = async () => {
  const topicArn = 'arn:aws:sns:us-east-1:123456789012:my-topic';
  const message = 'Hello World!';

  const params = {
    TopicArn: topicArn,
    Message: message,
  };

  try {
    const data = await snsClient.send(new PublishCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

publishMessage();

Enter fullscreen mode Exit fullscreen mode

RDS

Amazon RDS is a fully managed relational database service that provides high performance and low latency. Here is an example of how to connect to an RDS database using the mysql2 library:

const mysql = require('mysql2/promise');

const db = await mysql.createConnection({
  host: 'my-db-instance.us-east-1.rds.amazonaws.com',
  user: 'my-username',
  password: 'my-password',
  database: 'my-database',
});

const query = async () => {
  const [rows] = await db.execute('SELECT * FROM my-table');
  console.log(rows);
};

query();

Enter fullscreen mode Exit fullscreen mode

CloudWatch

Amazon CloudWatch is a monitoring and observability service that provides insights into your AWS resources and applications. Here is an example of how to put a log event into a CloudWatch log group using the AWS SDK v3:

const { CloudWatchLogsClient, PutLogEventsCommand } = require('@aws-sdk/client-cloudwatch-logs');

const cloudWatchLogsClient = new CloudWatchLogsClient({ region: 'us-east-1' });

const putLogEvent = async () => {
  const logGroupName = 'my-log-group';
  const logStreamName = 'my-log-stream';
  const logEvent = {
    message: 'Hello World!',
    timestamp: Date.now(),
  };

  const params = {
    logGroupName: logGroupName,
    logStreamName: logStreamName,
    logEvents: [logEvent],
  };

  try {
    const data = await cloudWatchLogsClient.send(new PutLogEventsCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

putLogEvent();

Enter fullscreen mode Exit fullscreen mode

API Gateway

Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, and secure APIs at scale. Here is an example of how to create an API Gateway REST API using the AWS SDK v3:

const { ApiGatewayClient, CreateRestApiCommand } = require('@aws-sdk/client-apigateway');

const apiGatewayClient = new ApiGatewayClient({ region: 'us-east-1' });

const createApi = async () => {
  const name = 'my-api';
  const description = 'My API';

  const params = {
    name: name,
    description: description,
  };

  try {
    const data = await apiGatewayClient.send(new CreateRestApiCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

createApi();

Enter fullscreen mode Exit fullscreen mode

Error Handling and Best Practices

When working with the AWS SDK v3, it's essential to handle errors and exceptions properly to ensure that your application is robust and reliable. Here are some best practices for error handling and retries:

Best Practice: Use try-catch blocks to catch and handle errors, and implement retries with exponential backoff to handle transient errors.

const retry = async (func, maxAttempts = 5, delay = 500) => {
  let attempts = 0;
  while (attempts < maxAttempts) {
    try {
      return await func();
    } catch (err) {
      attempts++;
      await new Promise((resolve) => setTimeout(resolve, delay));
      delay *= 2;
    }
  }
  throw new Error('Max attempts exceeded');
};

const myFunction = async () => {
  // code that may throw an error
};

retry(myFunction).then((data) => console.log(data)).catch((err) => console.log(err));

Enter fullscreen mode Exit fullscreen mode

Mini Project

Let's build a mini project that ties together S3, SQS, Lambda, SNS, and CloudWatch. We will create an application that uploads a file to S3, sends a message to an SQS queue, invokes a Lambda function, publishes a message to an SNS topic, and logs events to CloudWatch.

const { S3Client, PutObjectCommand } = require('@aws-sdk/client-s3');
const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs');
const { LambdaClient, InvokeCommand } = require('@aws-sdk/client-lambda');
const { SNSClient, PublishCommand } = require('@aws-sdk/client-sns');
const { CloudWatchLogsClient, PutLogEventsCommand } = require('@aws-sdk/client-cloudwatch-logs');

const s3Client = new S3Client({ region: 'us-east-1' });
const sqsClient = new SQSClient({ region: 'us-east-1' });
const lambdaClient = new LambdaClient({ region: 'us-east-1' });
const snsClient = new SNSClient({ region: 'us-east-1' });
const cloudWatchLogsClient = new CloudWatchLogsClient({ region: 'us-east-1' });

const uploadFile = async () => {
  const bucketName = 'my-bucket';
  const key = 'path/to/file.txt';
  const body = 'Hello World!';

  const params = {
    Bucket: bucketName,
    Key: key,
    Body: body,
  };

  try {
    const data = await s3Client.send(new PutObjectCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

const sendMessage = async () => {
  const queueUrl = 'https://sqs.us-east-1.amazonaws.com/123456789012/my-queue';
  const messageBody = 'Hello World!';

  const params = {
    QueueUrl: queueUrl,
    MessageBody: messageBody,
  };

  try {
    const data = await sqsClient.send(new SendMessageCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

const invokeLambda = async () => {
  const functionName = 'my-function';
  const payload = { name: 'John Doe' };

  const params = {
    FunctionName: functionName,
    Payload: JSON.stringify(payload),
  };

  try {
    const data = await lambdaClient.send(new InvokeCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

const publishMessage = async () => {
  const topicArn = 'arn:aws:sns:us-east-1:123456789012:my-topic';
  const message = 'Hello World!';

  const params = {
    TopicArn: topicArn,
    Message: message,
  };

  try {
    const data = await snsClient.send(new PublishCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

const putLogEvent = async () => {
  const logGroupName = 'my-log-group';
  const logStreamName = 'my-log-stream';
  const logEvent = {
    message: 'Hello World!',
    timestamp: Date.now(),
  };

  const params = {
    logGroupName: logGroupName,
    logStreamName: logStreamName,
    logEvents: [logEvent],
  };

  try {
    const data = await cloudWatchLogsClient.send(new PutLogEventsCommand(params));
    console.log(data);
  } catch (err) {
    console.log(err);
  }
};

uploadFile().then(sendMessage).then(invokeLambda).then(publishMessage).then(putLogEvent);

Enter fullscreen mode Exit fullscreen mode

Conclusion

In this comprehensive guide, we have covered the integration of Node.js with various AWS services, including S3, Lambda, DynamoDB, SQS, SNS, RDS, CloudWatch, and API Gateway. We have provided real-world code examples and best practices for each service, helping you to get started with building your own cloud-based applications. By following this guide, you can build scalable, secure, and reliable applications that take advantage of the power and flexibility of the AWS platform.