DEV Community

Dinesh_gowdam
Dinesh_gowdam

Posted on

Node.js with AWS SDK v3 – A Complete Integration Guide

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.

Top comments (0)