use-logger

v4.7.0arrow_drop_down
v4.7.0
STATUS
Passing
DOWNLOADS
97
VISIBILITY
Public
PUBLISHED
6 years ago
SIZE
N/A
1 contributor
Install use-logger as a package?
Copied
npm i @bit/giladshoham.react-hooks.use.use-logger
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
chevron_left
chevron_right

useLogger

React lifecycle hook that logs in console as component transitions through life-cycles.

Usage

import {useLogger} from 'react-use';

const Demo = (props) => {
  useLogger('Demo', props);
  return null;
};

Example Output

Demo mounted
Demo props updated {}
Demo un-mounted

Reference

useLogger(name, props);
  • name — component name.
  • props — latest props.
Help and resources