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

console-me

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-me

Patches Node.js console log methods to add a UTC timestamp to each message

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Console-Me

Patches Node.js console log methods to add a UTC timestamp to each message

Objectives

The main objective of this project is to be extremely simple. That and to display timestamps next to each message logged using node's console logging methods. It will never depend on any other module to do its thing, and it doesn't have any options, and both are on purpose.

Usage

Just require it somewhere in your project before needing the timestamps:

require('console-me')

console.log('something')
// Output: [2016-04-14T14:38:45.489Z] LOG something

console.error('oops')
// Output: [2016-04-14T14:38:45.489Z] ERROR oops

The message types will be colored according to the type of logging method used:

  • red: console.error
  • yellow: console.warn
  • green: everything else

Buffered output

The output is buffered in production environments to improve logging performance. The buffer size is set at 8KB after which it's flushed. On process exit all buffered messages will also be flushed to the output.

Keywords

FAQs

Package last updated on 24 May 2016

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