@krauters/logger
v0.3.2
Published
TypeScript wrapper for Winston, optimized for structured Lambda logs and CloudWatch.
Downloads
628
Maintainers
Readme
@krauters/logger
A TypeScript logging utility optimized for structured logging in AWS Lambda environments. It provides a customizable, structured logger with flexible output options, including support for local development-friendly colorized output.
Features
- Structured JSON Logging: Ideal for Lambda and other cloud environments.
- Colorized Output: Configurable colorized output for easy local debugging.
- Metric Publishing: Integrates with CloudWatch for metric tracking.
- Customizable Formats: Switch between JSON and human-readable formats.
- Singleton Pattern: Ensures consistent configuration across the application.
- Environment-Based Configurations: Configure log formats, levels, and transports using environment variables.
Installation
Install the package via npm:
npm install @krauters/logger
or with Yarn:
yarn add @krauters/logger
Usage
Basic example for initializing and using the logger:
import { Logger, LogLevel } from '@krauters/logger'
// Initialize the logger with options
const logger = Logger.getInstance({
configOptions: { LOG_LEVEL: LogLevel.Debug },
})
// Log messages at various levels
logger.info('Info level log')
logger.debug('Debug level log with metadata', { key: 'value' })
logger.error('An error occurred', { errorDetails: 'Error details here' })
// Publish metrics to CloudWatch
await logger.publishMetric({
metricName: 'RequestCount',
unit: 'Count',
value: 1,
})
Configuration
The logger supports multiple configuration options to control logging format, levels, and transports. Some commonly used environment variables include:
LOG_LEVEL
: Set the log level (debug
,info
,warn
,error
).LOG_FORMAT
: Choose betweenjson
for structured logging andreadable
for colorized output.REQUEST_ID
: Optionally set a request ID for tracing log entries.
Husky Integration
Husky helps manage Git hooks easily, automating tasks like running tests or linting before a commit. This ensures your code is in good shape before it’s pushed.
Pre-commit hooks in this project run scripts before a commit is finalized to catch issues or enforce standards. With Husky, setting up these hooks across your team becomes easy, keeping your codebase clean and consistent.
Our Custom Pre-Commit Hook
This project uses a custom pre-commit hook to run npm run bundle
. This ensures that our bundled assets are always up-to-date before any commit (particularly valuable for TypeScript-based GitHub Actions). Husky automates this to prevent commits without a fresh bundle, keeping everything streamlined.
Using Logger as Pre-Commit Hooks
# ./husky/pre-commit
#!/bin/sh
MAIN_DIR=./node_modules/@krauters/logger/scripts/pre-commit
. $MAIN_DIR/index.sh
Contributing
This project aims to continually evolve and improve its core features, making it more efficient and easier to use. Development happens openly here on GitHub, and we’re thankful to the community for contributing bug fixes, enhancements, and fresh ideas. Whether you're fixing a small bug or suggesting a major improvement, your input is invaluable.
License
This project is licensed under the ISC License. Please see the LICENSE file for more details.
🥂 Thanks, Contributors!
Thanks for your time and contributions.
🔗 Related Packages in the Family
Check out the rest of our @krauters
collection on npm/@krauters for more TypeScript utilities.