Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
/ loxt Public archive

Loxt is a simple and lightweight console logger that makes debugging fun and easy.

Notifications You must be signed in to change notification settings

loxtjs/loxt

Repository files navigation

loxt

Loxt is a simple and lightweight console logger with 0 external dependencies.


loxt github npm discord


import Loxt from 'loxt';

const loxt = new Loxt();

loxt.start('Some code...');
loxt.ready('Initialization code, whatever...');
loxt.info('Loxt is easy to use!');     
loxt.warn('You can use colors!');      
loxt.error('Create your own themes!'); 
loxt.success('You can use themes from other people too!');
loxt.start('My Amazing App!');