Created
December 16, 2011 23:24
-
-
Save Raynos/1488491 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PS C:\nodecode\temp> node debug .\temp.js | |
| < debugger listening on port 5858 | |
| connecting... ok | |
| debug> c | |
| < node.js:201 | |
| < throw e; // process.nextTick error, or 'error' event on first tick | |
| < ^ | |
| < bar | |
| program terminated | |
| debug> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function foo() { | |
| throw "bar"; | |
| } | |
| foo(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment