1.0.68 • Published 7 years ago

@flavioespinoza/log_log v1.0.68

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

log_log

Color logs for node console

Info

This ES Module uses the new esm module loader by John-David Dalton

See the release post and video for all the details.

Install

yarn (recommended)

yarn add @flavioespinoza/log_log

npm

npm i @flavioespinoza/log_log

ES6 import

Use import in typescript or using the new esm loader

// esm or typescript
import _log, { log } from '@flavioespinoza/log_log'

ES5 require

Use require for common.js modules

// require
const _log = require('@flavioespinoza/log_log')
const { log } = require('@flavioespinoza/log_log')

Deep (Nested Objects)

Show the entire depth of a nested Object or Array with nested Objects

const data = [
    {
        name: 'Ren',
        id: 1,
        preferences: {
            food: 'steak',
            drink: 'bourbon',
            ice_cream: 'soap bar',
            favorite_episode: 'Space Madness',
            hobbies: {
                sports: ['soccer', 'bad mitten'],
                dancing: ['salsa', 'bachata'],
                music: {
                    alternative: ['Pearl Jam', 'Nirvana'],
                    glam_rock: ['Mötley Crüe', 'Poison'],
                    country: ['Johnny Cash', 'George Strait']
                }
            }
        }
    }
]

_log.deep(data) //=> See console output below...

_log.deep(data)

Use _log with the underscore _log.deep(data) to show the complete data structure no matter how deep the nested object is

console.log(data)

Normal console.log(data) does not show nested data past 2 levels deep

Alerts

Use _log with the underscore _log.alertName(data) to show different levels of priority

_log.info(data)
_log.error(data)
_log.alert(data)
_log.warn(data)

Background Colors

Use _log with the underscore _log.colorName(data) to show data with background color

_log.blue(data)
_log.red(data)
_log.green(data)
_log.pink(data)
_log.yellow(data)
_log.violet(data)
_log.cyan(data)

Text Colors

Use log without the underscore log.colorName(data) to color text with no background.

log.blue(data)
log.red(data)
log.green(data)
log.yellow(data)
log.cyan(data)
log.magenta(data)
log.black(data)

Timer

Use _log with the underscore _log.timer(method, methodName) to show how long a function takes to return.

function do_stuff() {
    let res = []
    for (let i = 0; i < 100000; i++) {
        res.push(i)
    }
    return res
}

_log.timer(do_stuff, 'Do Stuff')

console output

Licence: MIT

1.0.68

7 years ago

1.0.67

7 years ago

1.0.66

7 years ago

1.0.65

7 years ago

1.0.64

7 years ago

1.0.63

7 years ago

1.0.62

7 years ago

1.0.61

7 years ago

1.0.59

7 years ago

1.0.58

7 years ago

1.0.57

7 years ago

1.0.56

7 years ago

1.0.55

7 years ago

1.0.54

7 years ago

1.0.53

7 years ago

1.0.52

7 years ago

1.0.51

7 years ago

1.0.50

7 years ago

1.0.49

7 years ago

1.0.48

7 years ago

1.0.47

7 years ago

1.0.46

7 years ago

1.0.45

7 years ago

1.0.44

7 years ago

1.0.43

7 years ago

1.0.42

7 years ago

1.0.41

7 years ago

1.0.40

7 years ago

1.0.39

7 years ago

1.0.38

7 years ago

1.0.37

7 years ago

1.0.36

7 years ago

1.0.35

7 years ago

1.0.34

7 years ago

1.0.33

7 years ago

1.0.32

7 years ago

1.0.31

7 years ago

1.0.30

7 years ago

1.0.29

7 years ago

1.0.28

7 years ago

1.0.27

7 years ago

1.0.26

7 years ago

1.0.25

7 years ago

1.0.23

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago