A simple node.js logger made in TypeScript π¨
This is the Node.js version, if you need it for the web go check out the other branch
npm install schiacciata/logger
const { Logger, Colors } = require('@schiacciata/logger'); const logger = new Logger({ date: true, symbols: true, text: true, }); logger.log('string'); console.log(Colors.text.red, 'red text', Colors.style.reset);