The Log colorify provides a simple way to log messages with color-coded output in TypeScript.
- Supports multiple log levels: success,danger,info,debug,notice,warning,error,critical,alert.
- Each log level has its own distinct color for easy identification.
- Lightweight and easy to integrate into TypeScript projects.
- 
Make sure you have Node.js and npm installed on your machine. 
- 
Install the Log colorifymodule using npm:npm install codegyan-log-colorify 
Import the Log class into your TypeScript file and use the provided static methods to log messages:
import { Log } from 'codegyan-log-colorify';
Log.success('This is a success message');
Log.debug('This is a debug message');
Log.info('This is an info message');
Log.notice('This is a notice message');
Log.warning('This is a warning message');
Log.error('This is an error message');
Log.critical('This is a critical message');
Log.alert('This is an alert message');This project is licensed under the MIT license - see the LICENSE file for details.
Contributions are welcome! Fork the repository, make your changes, and submit a pull request.
If you encounter any issues or have suggestions, please open an issue on the GitHub repository