wait_what_

home projects blog links contact
· open repo · js

log75

Log75 is a convenient, lightweight and customizable logging utility for Node.js

PREVIEW

Message types

There are 6 message types available out of the box:

  • Blank
  • Debug
  • Done
  • Info
  • Warn
  • Error

You can easily add more message types by extending the class.

Tables

Log75 can create neat looking tables for you!

logger.info(
    logger.table(
        'You can make\n' +
        'cool tables!'
    )
)

PREVIEW

logger.table([
    'And ones with',
    'a separator'
], 'info')

PREVIEW




go home · all projects