npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

log-tonic

v1.0.1

Published

A powerful and flexible logging utility for Node.js and TypeScript projects.

Downloads

4

Readme

Log-Tonic

Log-Tonic is a powerful and flexible logging utility for Node.js and TypeScript projects. It allows you to easily manage and format log messages across different features or modules within your application, with customizable prefixes, suffixes, and time formats.

Features

  • Easy Initialization: Initialize once with global settings for your entire application.
  • Feature-Specific Logging: Create loggers tailored for specific features or modules.
  • Customizable Message Format: Add optional prefixes and suffixes to log messages for better readability.
  • Support for Multiple Log Levels: Includes support for debug, info, and error log levels.
  • TypeScript Support: Fully typed with .d.ts files included for better integration in TypeScript projects.

Installation

You can install Log-Tonic via npm:

npm install log-tonic

Usage

1. Initialize the Logger

Initialize the logger at the start of your application with the desired configuration:

import { LoggerFactory } from 'log-tonic';

LoggerFactory.initialize({
  level: 'debug',
  appName: 'MyApp',
  timeFormat: 'yyyy-MM-dd HH:mm:ss', // Custom time format using date-fns
  messageFormat: { prefix: '--> INFO: ', suffix: ' <-- END' } // Optional custom prefix and suffix
});

2. Create Feature-Specific Loggers

Create a logger for a specific feature or module within your application:

const authLogger = LoggerFactory.createLogger('AuthService');

authLogger.info('User login successful');
authLogger.error('User login failed');
authLogger.debug('User login attempt with username "admin"');

3. Available Configuration Options

  • level: Sets the global log level. Available options are debug, info, error.
  • appName: The name of your application (default is MyApp).
  • timeFormat: The format for timestamps, using date-fns format tokens (e.g., yyyy-MM-dd HH:mm:ss).
  • messageFormat: Optionally set prefix and suffix to wrap your log messages (e.g., { prefix: '--> INFO: ', suffix: ' <-- END' }).

Example

const paymentLogger = LoggerFactory.createLogger('PaymentService');

paymentLogger.info('Payment processed successfully');
paymentLogger.error('Payment failed');
paymentLogger.debug('Processing payment for user ID 123');

This example will produce logs formatted like:

2024-08-11 13:45:30 [MyApp] [PaymentService] INFO: --> INFO: Payment processed successfully <-- END

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/my-feature).
  3. Commit your changes (git commit -m 'Add my feature').
  4. Push to the branch (git push origin feature/my-feature).
  5. Open a pull request.

License

Log-Tonic is licensed under the Apache License, Version 2.0. See the LICENSE file for more details.

Links