babel-plugin-logs-paths

1.0.7 • Public • Published

Babel Plugin Logs Paths

A fork of babel-plugin-meaningful-logs A babel plugin that enhances your logs by adding the file and the object logging.

Installation

npm i babel-plugin-logs-paths --save-dev

or

yarn add babel-plugin-logs-paths --dev

Usage

console.log(b.length)

becomes

console.log("pathToFile:2:8:b.length", b.length)

By default it modifies all console commands: console.error, console.log... But it can be customized. To modify all winstons logs the .babelrc file would be:

{
  plugins: [
    ['logs-paths',
    {loggers: [{pattern: 'winston'}]}
    ]
  ]
}

Contribute

  1. Submit an issue
  2. Fork the repository
  3. Create a dedicated branch (never ever work in master)
  4. The first time, run command: yarn into the directory
  5. Fix bugs or implement features

License

This project is licensed under the terms of the MIT license

Readme

Keywords

Package Sidebar

Install

npm i babel-plugin-logs-paths

Weekly Downloads

4

Version

1.0.7

License

MIT

Last publish

Collaborators

  • tolig