Tiny debug tool (~500 bytes) for terminal and browser inspired by visionmedia/debug API.
npm install @cher-ami/debug@cher-ami/debug was built in order to be as light as possible for terminal and browser,
shell script
$ npm i @cher-ami/debug
`
debug node
`shell
DEBUG=* node file.js
`
`js
const debug = require("@cher-ami/debug")
debug('foo'); // "foo"
`
process.env.DEBUG value can be defined as a specific namespace too:
`shell
DEBUG=namespace node file.js
`
Only debug function declaration with namespace declared as namespace will be printed in the console:
`js
// add the namspace as returned function paramater
const debug = require("@cher-ami/debug")("namespace")
debug('foo'); // "namespace foo"
`
process.env.DEBUG value accept "one glob parameter level":
`shell
DEBUG=config:* node file.js
`
Every debug function declaration with namespace config:{somestring} will be logged.
debug in browser
In the same way as nodejs usage, debug is browser compatible with the same API. The only difference is
we need to set the current namespace in localStorage.
Add on your browser localStorage:
`shell
localStorage.debug = "foo"
`
Use debug in javascript:
`js
// es6 import
import debug from "@cher-ami/debug"
const log = debug('foo');
log("bar") // "foo bar"
// commonjs import
const debug = require("@cher-ami/debug")("foo")
debug('bar'); // "foo bar"
`
Examples
Install dependencies:
`shell
pnpm i
`
Start example:
`shell
browser example
npm run dev:example-browser
node example
npm run dev:example-dev
``