debug icon indicating copy to clipboard operation
debug copied to clipboard

A tiny JavaScript debugging utility modelled after Node.js core's debugging technique. Works in Node.js and web browsers

Results 97 debug issues
Sort by recently updated
recently updated
newest added

Hello šŸ‘‹ I wanted to open this issue to get a gauge on the single dependency the module has. Currently this module as a dependency on `ms` with the semver...

change-patch

![image](https://user-images.githubusercontent.com/2086176/77105945-f9f07700-69e3-11ea-891b-db7344838f9c.png) It looks like Edge engine (not the new Chromium edge) almost has support for colors now, 3 years after #417 Could we revisit enabling them / If I submit...

feature
change-patch

```js const debug = require('debug')('foo') debug.enabled = true // Or use ENV variables const someObjectIWantToLog = { "%j": "%j %j %%" } debug("%o", someObjectIWantToLog, 1, 2, 3) ``` result: ```...

bug
change-patch
help-wanted
pr-welcome

On the example located at https://github.com/debug-js/debug#output-streams, it shows that's possible to set custom `log()` functions for each namespace, but also that setting it directly on the `debug` module takes precedence...

bug
change-patch
needs-documentation
pr-welcome

Would you consider a PR that implemented support for globally defaulting `log` to something other than `process.stderr`? The way I’d expect this to work is debug would default to stderr...

discussion
feature

Today, debug use module.exports facility. But nodejs and browser can support import / export notation, aka es6 modules. While preparing the v5, why not going into that mode? #656 ?

Hi! šŸ‘‹ Firstly, thanks for your work on this project! šŸ™‚ Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. As stated in #873, docs says...

Should I set other extra parameters, I didn't see any output ``` import {AppRegistry, Platform} from 'react-native'; import debug from 'debug'; const logger = debug('Test'); logger('test') ```

question

I am trying to run an express app through Visual Studio Code. I have a launch.json file with DEBUG defined like so: "env": { "DEBUG": "*" } Here is a...

needs-documentation
help-wanted
pr-welcome

We upgraded to `4.3.2` and are all of a sudden not getting logs in stderr (using in a node script). The regressions seems to have been caused by #799 Admittedly...

bug