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

logging-colorify

v1.1.22

Published

logging with different color

Downloads

29

Readme

logging-colorify package

How to use:-

You can install this package via npm or yarn.

npm install logging-colorify
# or
yarn add logging-colorify

Creating custom Logging options

import {LogOptions} from "logging-colorify";

const customTimeOptions: LogOptions = {
    logPrefix: 'date-03to07', //as per the use
    logExtension: 'log',
    logGrouping: 'custom', 
};

// Use the customTimeOptions in logging function like;

logError("Error message",customTimeOptions);

Getting Started

Import the logging functions into your code and start adding colorful logs to your applications.

import { logError, logInfo, logWarn, dailyError, dailyInfo, dailyWarn} from "logging-colorify"

 //-Now, you can use the logging functions in your code-

logError('This is an error message.',dailyError);

logInfo('This is an info message.',dailyInfo);

logWarn('This is a warning message.',dailyWarn);

API Logging

You can also use the createApiLogger function to log API details in various Node.js frameworks. Here's how to use it in different frameworks:

  1. IN Express.js
import {createApiLogger, dailyApiDetail} from "logging-colorify"

app.get('/your-route', (req, res) => {
  const startTime = performance.now();
  // Call createApiLogger with the Express request object
  createApiLogger(req, startTime,dailyApiDetail);
  // Other Express.js-specific code here
});

-- startTime is optional if you want to get the time diiference between API call and function call. 
  1. IN Koa.js
import {createApiLogger, dailyApiDetail} from "logging-colorify"

app.use(async (ctx) => {
    const startTime = performance.now();
    // Call createApiLogger with Koa.js ctx object
    await createApiLogger(ctx.request, startTime,dailyApiDetail);
    // Other Koa.js-specific code here
});
  1. IN Hapi.js
import {createApiLogger, dailyApiDetail} from "logging-colorify"

server.route({
    method: 'GET',
    path: '/your-route',
    handler: (request, h) => {
      // Call createApiLogger with the Hapi.js request object
      createApiLogger(request,dailyApiDetail);
      // Other Hapi.js-specific code here
      return 'Hello, World!';
    },
  });
  1. IN Nest.js
import {createApiLogger, dailyApiDetail} from "logging-colorify"

@Post('your-route')
async yourControllerMethod(@Req() request: Request) {
    // call createApiLogger with Nest.js request object
    await createApiLogger(request,dailyApiDetail);
    // other Nest.js-specific code here
}

Customization

You can customize the log messages and colors by modifying the underlying functions in the logging-colorify package.

License

This package is open-source and available under the ISC License.

Run Test

All of the logging-colorify tests are written with mocha. They can be run with npm

npm test

Issues and Contributions

If you encounter any issues or would like to contribute to this package, please visit the GitHub repository. We welcome your feedback and contributions!

Credits

This package is maintained by Hritik Chauhan.

Thank you for using the Logging-Colorify package! We hope it brings a touch of color and simplicity to your Node.js applications. If you have any questions or feedback, please don't hesitate to reach out. Happy logging!