0.0.2 • Published 6 years ago

qroria v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

alt text

qroria

Simple colorful logger.

installation

Using terminal:

npm install qroria

Using package.json

{
  "dependencies": {"qroria": "0.0.1"}
}

usage

let qroria = require('qroria');

qroria.setTitle('qroria');
qroria.displayTitle(true);
qroria.displayTimeStamp(true);

qroria.info('This is some info!');
qroria.warning('This is some warning!');
qroria.error('This is some error!');
qroria.debug('This is some debug!');

qroria.displayTimeStamp(false);

qroria.info('This is some info!');
qroria.warning('This is some warning!');
qroria.error('This is some error!');
qroria.debug('This is some debug!');

qroria.displayTitle(false);

qroria.info('This is some info!');
qroria.warning('This is some warning!');
qroria.error('This is some error!');
qroria.debug('This is some debug!');

output

alt text