debuger
/
2.4.1
debuger 2.4.1
Install from the command line:
Learn more about npm packages
$ npm install @dvgamerr-app/debuger@2.4.1
Install via package.json:
"@dvgamerr-app/debuger": "2.4.1"
About this version
debuger beautiful message logs and insert log to mongodb.
npm i @touno-io/debuger
// or
yarn i @touno-io/debuger
-
log
function(...msg)
message log normal -
start
function(...msg)
start log and color green. -
success
function(...msg)
start log and color green. -
warn
function(...msg)
start log and color green. -
info
function(...msg)
info log and color blue. -
error
function(...msg)
error log and color red.
-
wait
function(msg, max = 100, sizeBar = 25)
message and progress bar. -
increment
function(value)
add value. -
update
function(value)
set value. -
stop
function()
start log and color green. -
info
function(...msg)
info log and color blue. -
error
function(...msg)
error log and color red.
sample
// es6
import debuger from '@touno.io/debuger'
const logger = await debuger('test')
// javascript
const logger = require('@touno.io/debuger')('test')
logger.log('message')
logger.info('message')
logger.start('begin')
logger.success('end')
logger.warn('error type warning.')
logger.error(new Error('Error'))
// progress
logger.wait('begin', 100)
logger.update(50)
logger.stop()
MIT © 2018 Touno™