Socket
Socket
Sign inDemoInstall

@cher-ami/debug

Package Overview
Dependencies
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cher-ami/debug

Tiny debug tool (~500 bytes) for terminal and browser inspired by visionmedia/debug API.


Version published
Weekly downloads
487
increased by51.71%
Maintainers
4
Weekly downloads
 
Created
Source

debug

This repo is a fork of @wbe/debug

Tiny debug tool (~500 bytes) for terminal and browser inspired by visionmedia/debug API.

Motivation

@cher-ami/debug was built in order to be as light as possible for terminal and browser, as the same way as the great visionmedia/debug tool.

Installation

$ npm i @cher-ami/debug

debug node

DEBUG=* node file.js  
const debug = require("@cher-ami/debug")
debug('foo'); // "foo"

process.env.DEBUG value can be defined as a specific namespace too:

DEBUG=namespace node file.js  

Only debug function declaration with namespace declared as namespace will be printed in the console:

// 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":

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:

localStorage.debug = "foo"

Use debug in javascript:

// 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:

pnpm i

Start example:

# browser example
npm run dev:example-browser

# node example
npm run dev:example-dev

Credits

Willy Brauner

Licence

MIT

Keywords

FAQs

Package last updated on 27 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc