a smartlog destination targeting the local console
Go to file
2017-03-10 19:27:25 +01:00
dist remove loggly 2017-01-21 23:15:34 +01:00
docs add coverage 2016-09-02 17:26:55 +02:00
test improve README and test registerRemote 2017-01-22 11:42:04 +01:00
ts remove loggly 2017-01-21 23:15:34 +01:00
.gitignore integrate npmpage 2016-09-02 12:50:07 +02:00
.gitlab-ci.yml fix gitlab yml 2016-09-02 12:57:33 +02:00
.npmignore integrate npmpage 2016-09-02 12:50:07 +02:00
LICENSE Initial commit 2015-09-20 17:42:50 +02:00
npmts.json update smartenv dependency 2016-02-20 10:29:35 +01:00
package.json 6.1.3 2017-03-10 19:27:25 +01:00
qenv.yml improve README and test registerRemote 2017-01-22 11:42:04 +01:00
README.md update README 2017-03-10 19:26:45 +01:00
tslint.json update to version 2 2016-10-16 02:26:43 +02:00

beautylog

beautiful logging, TypeScript ready

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

beautylog.log('some log message') // normal console log message
beautylog.info('some log message') // info console log message
beautylog.ok('some log message') // ok console log message
beautylog.warn('some log message') // warn console log message
beautylog.success('some success message') // success console log message
beautylog.error('some error message') // error console log message

Ora Integration

beautylog wraps the excellent ora module from npm to better work with beautylog. In general that means that you can log persistent messages WHILE you are actually having an active Ora object. beautylog handles all the fuss for you.

beautylog.ora.start('Hi, this is some text!', 'blue')
beautylog.info('some persistent text') //does not disturb ora
console.log('something') // even this works because console.log is monkeypatched by beautylog
beautylog.ora.text('some updated text') // switches the text
beautylog.ora.stop()

Centralized remote logging

Beautylog makes it easy to have all your node applications log to a remote location.

import { Loggly } from 'beautyremote'
let myLogglyRemote = new Loggly({
    token: 'my_super_long_token_here'
})
beautylog.registerRemote(myLogglyRemote)

Note: Beautylog monkeypatches all console log methods. There is no need to change anything in your code. Everything that is getting logged to your console by node will get logged to a remote as well.

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer