A wrapper to node-debug with line numbers and other magic
yarn add bo01ean/ndebug
Require the library with it's name-space passed to it's constructor.
const debug = require('ndebug')('info');
debug('hai!');
DEBUG=info node index.js # OR
DEBUG=info node -e "const debug = require('ndebug')('info'); debug('hai\!');"
:)