📭Logger

Loxt's main function is to help you log messages with style

To start using it create a instance of the Loxt class, and then call its various methods.

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!');

Don't forget to install the package with npm install loxt

Last updated