Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

depugger

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

depugger - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

package.json
{
"name": "depugger",
"version": "0.2.0",
"version": "0.2.1",
"description": "small debugging utility",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -50,1 +50,17 @@ # node-depugger

````
### depugger.child(childName)
Creates a child instance. The name of the parent's debugger will be concatenated with the childDebugger's name:
````javascript
var depugger = require('depugger');
var debug = depugger({debug: true, name: 'fooDebugger'});
var childDebug = debug.child('child');
childDebug('foo');
//output to console:
//[fooDebugger.child] foo
````
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