1.0.0 • Published 2 years ago

jilog v1.0.0

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

Motivation

  • Know in which order they are rendered.
  • Know what is in the value when the component is rendered.
  • Standardize console log customization.

What Is jilog

Using jilog, you can confirm the below.

  • what the time spent from log before.
  • what the order run the log.
  • what the value is in the running.

Usage

const SampleComponent = (props) => {
 /**
  * [LOG: 0][TIME: XX milliseconds]
  * "{example: 'example log'}" 
  */
  jiLog({example: 'example log'},'SampleComopnent', 'greenyellow')

  return (
    <div>
      <p>SampleComponent</p>
    </div>
  )
}