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.
- 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.
- Persistent Metadata: Easily add or remove metadata fields from all subsequent logs via
addToAllLogs
andremoveFromAllLogs
. - Hidden Fields Management: Control which metadata fields are excluded from logs via
LOG_FRIENDLY_FIELDS_HIDE
andLOG_STRUCTURED_FIELDS_HIDE
.
Install the package via npm:
npm install @krauters/logger
or with Yarn:
yarn add @krauters/logger
import { Logger, LogLevel } from '@krauters/logger'
// initialize the logger with options
const logger = Logger.getInstance({
configOptions: { LOG_LEVEL: LogLevel.Debug },
})
// add persistent metadata
logger.addToAllLogs('userId', 'abc123')
logger.addToAllLogs('sessionId', 'xyz789')
// 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' })
// remove metadata keys (single or multiple)
logger.removeFromAllLogs('userId', 'sessionId')
// dynamically hide specific fields from logs
logger.updateInstance({
configOptions: { LOG_FRIENDLY_FIELDS_HIDE: ['sessionId'] },
})
// publish metrics to cloudwatch
await logger.publishMetric({
metricName: 'requestCount',
unit: 'Count',
value: 1,
})
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 betweenstructured
for JSON logging andfriendly
for colorized console output (default: friendly).LOG_FRIENDLY_FIELDS_HIDE
: A comma-separated list of metadata fields to exclude from friendly logs.LOG_STRUCTURED_FIELDS_HIDE
: A comma-separated list of metadata fields to exclude from structured logs.REQUEST_ID
: Optionally set a request ID for tracing log entries.SIMPLE_LOGS
: Optionally make log entries simpler (omit codename, version, use shorter requestId–useful for local development).INIT_LOGGER
: Automatically initialize the logger if not set tofalse
.
This package supports .env configuration.
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.
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.
# ./husky/pre-commit
#!/bin/sh
MAIN_DIR=./node_modules/@krauters/logger/scripts/pre-commit
. $MAIN_DIR/index.sh
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.
This project is licensed under the ISC License. Please see the LICENSE file for more details.
Thanks for your time and contributions.
Check out the rest of our @krauters
collection on npm/@krauters for more TypeScript utilities.