Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Show log messages on your terminal with style :-) . Use debugging levels to enable or disable log messages.
Show log messages on your terminal with style :-) . Use debugging levels to enable or disable log messages.
Did you like the project? Please, considerate a donation to help improve!
Show log messages on your terminal with style :-) . Use debugging levels to enable or disable log messages.✨
npm i beautlog
or
yarn add beautlog
const Console = require('beautlog');
Console.trace('Trace');//change the level to use trace
Console.success('Success');
Console.ok('Ok');//success alias
Console.debug('Debug');
Console.info('Info');
Console.warning('Warning');
Console.warn('Warn');//warning alias
Console.error('Error');
or
import Console from 'beautlog';
Console.WriteLine('Hello World');
Console.trace('Trace');
Console.success('Success');
Console.ok('Ok');
Console.debug('Debug');
Console.info('Info');
Console.warning('Warning');
Console.warn('Warn');
Console.error('Error');
or
import { puts, print, printf, log, debug } from 'beautlog';
puts('Hello World');
print('Hello World');
printf('Hello World');
log('Hello World');
debug('Hello World');
import Console, { input } from 'beautlog';
const myValue = input('Insert an value:');
//or:
const mySecondValue = Console.ReadLine('Insert an second value:');
//result:
Console.Write(`${myValue} and ${mySecondValue}`);
Clone this repository:
git clone https://github.com/hebertcisco/beautlog
cd beautlog && npm i && rm -rf .git && git init
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Give a ⭐️ if this project helped you!
Or buy me a coffee 🙌🏾
Copyright © 2023 Hebert F Barros.
This project is MIT licensed.
FAQs
Show log messages on your terminal with style :-) . Use debugging levels to enable or disable log messages.
We found that beautlog demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.