bug-clinic icon indicating copy to clipboard operation
bug-clinic copied to clipboard

a nodeschool.io-style workshopper for learning how to debug Node.js apps

Results 12 bug-clinic issues
Sort by recently updated
recently updated
newest added

Why ? ``` javascript res.on("end", function (e) { console.error("done!"); }); ``` Why is this not ok? ``` javascript res.on("end", function (e) { console.log("done!"); }); ```

**Console output:** ``` console bug-clinic run scan.js TAP version 13 listening HTTP: SERVER new http connection HTTP: outgoing message end. HTTP: server socket close # (anonymous) ok 1 exited without...