
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@aws-lambda-powertools/logger
Advanced tools
The logging package for the AWS Lambda Powertools for TypeScript library
@aws-lambda-powertools/logger is a structured logging utility designed for AWS Lambda functions. It simplifies the process of creating consistent and meaningful logs, which can be crucial for debugging and monitoring serverless applications.
Basic Logging
This feature allows you to log basic information. The logger.info method is used to log informational messages.
const { Logger } = require('@aws-lambda-powertools/logger');
const logger = new Logger();
exports.handler = async (event) => {
logger.info('This is an info log');
return { statusCode: 200, body: 'Hello World' };
};
Structured Logging
Structured logging allows you to add context to your logs, making them more useful for debugging and monitoring. You can add persistent attributes that will be included in every log entry.
const { Logger } = require('@aws-lambda-powertools/logger');
const logger = new Logger({
persistentLogAttributes: {
service: 'my-service',
environment: 'production'
}
});
exports.handler = async (event) => {
logger.info('This is a structured log', { userId: '12345' });
return { statusCode: 200, body: 'Hello World' };
};
Error Logging
This feature allows you to log errors with additional context. The logger.error method is used to log error messages.
const { Logger } = require('@aws-lambda-powertools/logger');
const logger = new Logger();
exports.handler = async (event) => {
try {
throw new Error('Something went wrong');
} catch (error) {
logger.error('An error occurred', { error });
}
return { statusCode: 500, body: 'Internal Server Error' };
};
Winston is a versatile logging library for Node.js that supports multiple transports (e.g., console, file, HTTP). It offers more flexibility and customization options compared to @aws-lambda-powertools/logger but requires more setup.
Bunyan is another structured logging library for Node.js. It provides a JSON-based logging format and includes features like log levels and serializers. It is similar to @aws-lambda-powertools/logger in terms of structured logging but is more general-purpose.
Pino is a fast JSON logger for Node.js applications. It is designed for high performance and low overhead. While it offers similar structured logging capabilities, it is more focused on performance compared to @aws-lambda-powertools/logger.
A suite of utilities for AWS Lambda functions to ease the adoption of best practices such as tracing, structured logging, custom metrics, and more.
You can use the library in both TypeScript and JavaScript code bases.
AWS Lambda Powertools for Python and AWS Lambda Powertools for Java are also available.
📜 Documentation | NPM | Roadmap | Examples | Serverless TypeScript Demo
Find the complete project's documentation here.
The AWS Lambda Powertools for TypeScript utilities follow a modular approach, similar to the official AWS SDK v3 for JavaScript.
Each TypeScript utility is installed as standalone NPM package.
Install all three core utilities at once with this single command:
npm install @aws-lambda-powertools/logger @aws-lambda-powertools/tracer @aws-lambda-powertools/metrics
Or refer to the installation guide of each utility:
👉 Installation guide for the Tracer utility
👉 Installation guide for the Logger utility
👉 Installation guide for the Metrics utility
The Serverless TypeScript Demo shows how to use Lambda Powertools for TypeScript.
You can find instructions on how to deploy and load test this application in the repository.
If you are interested in contributing to this project, please refer to our Contributing Guidelines.
The roadmap of Powertools is driven by customers’ demand.
Help us prioritize upcoming functionalities or utilities by upvoting existing RFCs and feature requests, or creating new ones, in this GitHub repository.
#lambda-powertools
- Invite, if you don't have an accountCredits for the Lambda Powertools idea go to DAZN and their DAZN Lambda Powertools.
This library is licensed under the MIT-0 License. See the LICENSE file.
1.0.2 (2022-07-19)
Note: Version bump only for package aws-lambda-powertools-typescript
FAQs
The logging package for the Powertools for AWS Lambda (TypeScript) library
The npm package @aws-lambda-powertools/logger receives a total of 352,896 weekly downloads. As such, @aws-lambda-powertools/logger popularity was classified as popular.
We found that @aws-lambda-powertools/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.