Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 557 Bytes

File metadata and controls

16 lines (11 loc) · 557 Bytes

About

A better logger for Node.js that logs timestamp, date and time of logs along with colors to make debugging easier in large scale.

Used in many of my projects like Giveaway Boat to help me track down errors and logs easier.

How To Use?

It's very simple to use, simply import the package and that's all!

Example

import 'better-logger';

console.log('This is a log!'); // [14/11/22 11:39:02 PM 1668449342517] This is a log!
console.error('An Error!');    // [14/11/22 11:39:02 PM 1668449342517] An Error!