Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

exa-logger

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exa-logger

Advanced JavaScript logger for debugging.

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

Exalogger

A simple and customizable terminal logger utility for Node.js applications. Exalogger allows you to log messages with different levels of severity (INFO, WARN, ERROR), all with color-coded output for better readability.

Features

  • Timestamped Logs: Automatically adds a timestamp to every log.
  • Color-Coded Output: Uses chalk to colorize log levels for easy identification.
  • Simple API: Call info, warn, or error methods directly without the need for instantiating classes.
  • Chainable Logging: Supports chaining log levels in a single line.

Installation

You can install the library via npm:

npm install exalogger

Usage

Import the Exalogger object and use the logging functions as needed.

import { Exalogger } from 'exalogger';

Exalogger.info('This is an info message');
Exalogger.warn('This is a warning message');
Exalogger.error('This is an error message');

Example Output

When using the logger, you’ll see output like this in your terminal:

[2024-08-13 14:55:23] INFO: This is an info message
[2024-08-13 14:55:24] WARN: This is a warning message
[2024-08-13 14:55:25] ERROR: This is an error message

Chaining Example

You can chain multiple log methods together:

Exalogger.info('Starting process...')
         .warn('Low disk space')
         .error('Failed to complete process');

Dependencies

Dependencies

•	dayjs: For formatting timestamps.
•	chalk: For colorizing terminal output.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Author

Rainer Regan - rainer.aff@gmail.com

Keywords

FAQs

Package last updated on 13 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc