1. fancy-log
Log things, prefixed with a timestamp.
fancy-log
Package: fancy-log
Created by: gulpjs
Last modified: Thu, 04 Apr 2024 23:53:39 GMT
Version: 2.0.0
License: MIT
Downloads: 11,325,258
Repository: https://github.com/gulpjs/fancy-log

Install

npm install fancy-log
yarn add fancy-log

fancy-log

NPM version Downloads Build Status Coveralls Status

Log things, prefixed with a timestamp.

Usage

 var log = require('fancy-log');

log('a message');
// [16:27:02] a message

log.error('oh no!');
// [16:27:02] oh no!

API

log(msg...)

Logs the message as if you called console.log but prefixes the output with the
current time in HH:mm:ss format.

log.error(msg...)

Logs the message as if you called console.error but prefixes the output with the
current time in HH:mm:ss format.

log.warn(msg...)

Logs the message as if you called console.warn but prefixes the output with the
current time in HH:mm:ss format.

log.info(msg...)

Logs the message as if you called console.info but prefixes the output with the
current time in HH:mm:ss format.

log.dir(msg...)

Logs the message as if you called console.dir but prefixes the output with the
current time in HH:mm:ss format.

Styling

If the terminal that you are logging to supports colors, the timestamp will be formatted as though it were a Date being formatted by util.inspect(). This means that it will be formatted as magenta by default but can be adjusted following node's Customizing util.inspect colors documentation.

For example, this will cause the logged timestamps (and other dates) to display in red:

 var util = require('util');

util.inspect.styles.date = 'red';

License

MIT

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin