1.0.2 • Published 6 months ago

poc_node_logging_tool v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

POC Node Logging Prototype

Overview and Scope

The logging is a dedicated component in the software project responsible for recording and managing log entries for NodeJS projects. It separates the concerns of logging from the core application code and offers several advantages like clean code, customisation configurations of levels, formats etc and it can can be easily integrated with log analysis tools and external services. It will give us a reusable and consistent format and structure throughout the application/s, and thanks to that we can improve performance monitoring and security auditing.

The logger module integrates other best practice configurations and tools, such as Prettier for code formatting, a linter for code quality, and includes a Makefile for task automation, and other tools. These tools help maintain code quality, consistency, and automate routine development tasks.

Files Structure

Directory PathDescription
./formatting/This folder contains formatting available for the Winston module, humanFormat.ts and jsonFormat.ts  as basic format.
./config/This folder contains configuration settings for the logger module. It is essential for customising the behaviour of the logger according to the application's requirements. The configuration options are (levels, colours, level, humanReadable and others)
./type/This folder defines data types, includes TypeScript interfaces that describe the structure and shape of various objects used in the module, for example LoggerOptions, LogMetaData and others
./util/This folder contains utility functions that are used throughout the logger module
./ApplicationLogger.tsApplicationLogger is the only class on the logging module. It is a class that wraps a Logger instance and provides default and request logging methods for each defined set levels (error, info and debug).
./index.tsContains the createLogger(namespace: string): ApplicationLogger, and it is a function used by the application to initialise the logger and create the log methods, and it returns an instance of ApplicationLogger
./testJest Test files (*.spec.ts, setup.ts, and *.mocks.ts)
Others filesOther files related to modules dependency, CI/CD, *git, dockerization, lint, test/typescript configs …

Formatting

The createFormat(options: LoggerOptions): Logger function is used to create a logging format for the logger module, and it can generate logs in either human-readable or JSON format, depending on the provided LoggerOptions.

  • options (parameter): An object of type LoggerOptions that defines the format and behavior of the logger.

  • Logger (return type): The function returns an instance of a Logger that is configured based on the provided options. The Logger would have methods for various log levels (e.g., debug, info, error) and be responsible for creating log entries in the specified format.

Logger Class

ApplicationLogger is the only class on the logging module. It is a class that wraps a Logger instance and provides default and request logging methods for each defined set levels (error, info and debug).

It has a constructor that takes a Logger instance as a parameter to initialise the logger attribute. It provides methods for different logging levels, including debug(), info(), and error(), which take a message as input. We could add more levels but I think those three will cover all our scenario. It also provides methods for request-based logging at each level, such as debugRequest(), infoRequest(), and errorRequest(), which take a Request (express object) and a message as input.

Integration

To integrate the module for testing purposes into your Node.js project, use the following command: npm install username/repo#branchName --save. Once it is installed, you need to create a logger.ts utility, as shown below, and use it when required. Obviously we are going to use the singleton pattern.

// logger.ts
import { ApplicationLogger } from "logging/dist/ApplicationLogger";
import { createLogger } from "logging";

import { APPLICATION_NAME } from "../config";

let logger: ApplicationLogger | undefined = undefined;

export const log = (!logger) ? (logger = createLogger(APPLICATION_NAME)) : logger;

// Middleware example
import { NextFunction, Request, Response } from 'express';
import { log } from '../utils/logger';

export const logger = (req: Request, _res: Response, next: NextFunction) => {
    log.infoRequest(req, `${req.method} ${req.path}`);
    next();
};

ToDo

  • Create Repo template
  • Publishes the SDK on npm package registry
1.0.2

6 months ago

1.0.0

6 months ago