AddLogging is a module NPM for code tree parse
npm install @albertocruzluis/espree-logging addLogging CLI
=========

A small library providing utility methods to create tree parse code since cli or node module
## Table of Contents
* Installation
* Usage
* License
## Installation
### Install Globally
npm i -g @albertocruzluis/espree-logging
### Install Locally
npm i @albertocruzluis/espree-logging --save
## Usage
### CLI
``bash`
node_modules/.bin/addLogging -h or --help
`
Usage: add-logging [options]
AddLogging is a module NPM for code tree parse
Options:
-V, --version output the version number
-o, --output
-p, --pattern
-h, --help output usage information
`
### Generate Parse Code of input Code
`js
const addLogging = require('@albertocruzluis/espree-logging')
const input = 'let z = (e => {
return e +1
})(4)'
console.log(addLogging(input))
``
## License
## Release History
* 0.1.1 Initial release
* 0.2.0 Add Pattern Function Name in CLI