use-logger
TypeScript icon, indicating that this package has built-in type declarations

3.2.0 • Public • Published

use-logger

useLogger hook for React.js

Usage

Install package

 npm i --save-dev use-logger

Use package

  • Import to component
 import {useLogger} from "use-logger";
  • Init class/function/component name for every component
 const logger = useLogger(<app-name>);
  • Write log with type info | warning | error
 logger.log_info(data, options);
 logger.log_warn(data, options);
 logger.log_error(data, options);

Development commands

 // watch
 yarn start

 // or
 npm run start
 // builds the dist folder
 yarn build

 // or
 npm run build

Deployment to NPM

Login to correct NPM account

npm login

Versioning

Increase the version number as per NPM guides [https://docs.npmjs.com/about-semantic-versioning].

// increases the first digit i.e. from 0.5.4 to 1.0.0
npm version major

// increases the second digit i.e. from 0.0.3 to 0.1.0
npm version minor

// increases the third digit i.e. from 0.0.1 to 0.0.2
npm version patch

Deployment

Run the command and the package should be up.

npm publish --access public

Dependents (0)

Package Sidebar

Install

npm i use-logger

Weekly Downloads

6

Version

3.2.0

License

MIT

Unpacked Size

10 kB

Total Files

7

Last publish

Collaborators

  • ngthuc