A simple and colorful logging package for Node.js applications, providing easy-to-use logging functions with timestamp and color support.
Install the package via npm:
npm install @soydaddy/logs
First, require the @soydaddy/logs
in your project:
const { info, warn, error, success, debug, logging } = require('@soydaddy/logs');
info('This is an info message');
warn('This is a warning message');
error('This is an error message');
success('This is a success message');
debug('This is a debug message');
logging('This is a custom log message');
Logs an info message.
Logs a warning message.
Logs an error message.
Logs a success message.
Logs a debug message.
Logs a custom message.
This project is licensed under the MIT License.
soyDaddy