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.
It's very simple to use, simply import the package and that's all!
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!