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 79 debug issues
Sort by recently updated
recently updated
newest added

This is a minor update only containing stylistic changes: https://github.com/vercel/ms/releases/tag/2.1.3 It's nice to have so it doesn't show up as an outdated dependency & so it deduplicates with other libraries...

add template strings support ![image](https://user-images.githubusercontent.com/28481035/134706063-9b147896-198f-48aa-9f46-bd7a8cd7955c.png)

From https://github.com/debug-js/debug/issues/786#issuecomment-1059397551 Requested by @jimmywarting and @Qix- This removes difficult to use ES5 conventions and prepares us for v5. As someone who started using Node after ES6 with ESM as...

I am using 'debug' with TypeScript in an Electron project like so: ```ts import debug from 'debug'; const log = debug('foo'); export default async function myFunction(name: string) { log('calling myFunction');...

# 5.x Roadmap It's about time for another step in bringing `debug` up to date - the `5.x` major release. I know it hasn't been a long time since 4.x...

discussion
help-wanted

I love debug's simplicity, but it bugs me that it is so tightly coupled to environment variables (NodeJS impl) I would like to integrate it in [Metalsmith](https://github.com/metalsmith/metalsmith) along with an...

Closes #582. This pull request is an attempt at implementing https://github.com/visionmedia/debug/issues/582. As stated by [my comment](https://github.com/visionmedia/debug/issues/582#issuecomment-446783778) there, this code isn't yet complete and actually ready to be merged, and is...

feature
change-major

debug @latest i hit with follow with node > DEBUG=picnicapp:* node --inspect-brk ./bin/www ``` const debug = require('debug'); log = require('debug')('picnicapp:stdout') debug.log = console.log.bind(console); log("test custom console"); ``` console look...

bug
change-patch
pr-welcome

Debug has a simple API with a handful of static-/member-methods. It has been relatively unchanged _since its conception_ (yes, users of 0.x can most likely upgrade to the latest major...

change-patch
pr-welcome

I found this when debugging some mysql search strings, so for example looking for a name like "jordan" to appear somewhere in a string, but wrapped with % to match...

bug
change-patch
help-wanted
pr-welcome