winston-chalk
v1.0.12
Published
[![npm version](https://badge.fury.io/js/winston-chalk.svg)](https://badge.fury.io/js/winston-chalk) [![GitHub license](https://img.shields.io/github/license/hassan-mehedi/winston-chalk.svg)](https://github.com/hassan-mehedi/winston-chalk/blob/main/LICEN
Downloads
8
Maintainers
Readme
winston-chalk
winston-chalk is a custom logger module that combines the functionality of the Winston logging library with the colorful text formatting of Chalk. It allows you to log messages with different severity levels and adds colors to make your logs more visually appealing.
Installation
You can install winston-chalk using npm or yarn:
npm install winston-chalk
or
yarn add winston-chalk
Usage
Here's how you can use winston-chalk in your Node.js applications:
const logger = require("winston-chalk");
logger.info("This is an info message.");
logger.warn("This is a warning message.");
logger.error("This is an error message.");
logger.debug("This is an error message.");
Output
By default, winston-chalk will colorize log messages based on their severity level (info: blue, warn: yellow, error: red) to make it easier to distinguish between different types of messages.
License
This package is licensed under the MIT License. See the LICENSE file for details.
Issues
If you encounter any issues or have questions about this package, please feel free to open an issue on GitHub.
Author
winston-chalk is maintained by Mehedi Hassan.
Acknowledgments
Thank you for using winston-chalk!