A utility package to debug api
npm install debugging-tool`npm install debugging-tool
`
const util = require('debugging-tool');
util.debug('title', message, 'status');
`
note also the environment variable must be set
DEBUG=true
Using Version Bump:
```
const util = require('debugging-tool');
const patch = util.bumpIt('3.3.3', 'patch');
const minor = util.bumpIt('3.3.3', 'minor');
const major = util.bumpIt('3.3.3', 'major');