Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I throw a Javascript exception myself (eg, throw "AArrggg"), how can I get the stack trace (in Firebug or otherwise)? Right now I just get the message.

edit: As many people below have posted, it is possible to get a stack trace for a JavaScript exception but I want to get a stack trace for my exceptions. For example:

function foo() {
    bar(2);
}
function bar(n) {
    if (n < 2)
        throw "Oh no! 'n' is too small!"
    bar(n-1);
}

When foo is called, I want to get a stack trace which includes the calls to foo, bar, bar.

share|improve this question
Just google for javascript stack trace. You will get your answer! Here's one particularly interesting - helephant.com/2007/05/diy-javascript-stack-trace – Chetan Sastry Feb 26 '09 at 18:46
1  
possible duplicate of Javascript exception stack trace – ripper234 Feb 5 '12 at 14:54
Bug is still open on Firebug bug tracker since 2008: code.google.com/p/fbug/issues/detail?id=1260 - star it! – Miller Medeiros Mar 14 '12 at 3:44
The answer should be "throw new Error('arrrgh');" see this nicely written page: devthought.com/2011/12/22/a-string-is-not-an-error – user92979 Dec 11 '12 at 6:17

10 Answers

up vote 18 down vote accepted
+100

This snippet may somewhat help, although I didn't try it yet.

function stacktrace() { 
  function st2(f) {
    return !f ? [] : 
        st2(f.caller).concat([f.toString().split('(')[0].substring(9) + '(' + f.arguments.join(',') + ')']);
  }
  return st2(arguments.callee.caller);
}
share|improve this answer
This seems to be the most promising so far... Creating an 'Exception', so calling an exception would be: throw Exception('message'), where the Exception function would figure out what's on the stack. – David Wolever Mar 11 '09 at 18:56
Alright, well, since this is the closest thing to a correct answer, I'll accept it. – David Wolever Mar 17 '09 at 4:31
2  
I'm not sure why this isn't voted up more - the other answers didn't work that well for me. BTW, make sure not to treat arguments as an array (updated snippet here: gist.github.com/965603) – ripper234 May 10 '11 at 23:25
Demo: jsbin.com/acatil – ripper234 Feb 5 '12 at 14:48
not working in chrome, tacktrace(): [Exception: TypeError: Object #<Object> has no method – hetaoblog Jan 7 at 1:51
show 1 more comment

If you have firebug, there's a break on all errors option in the script tab. Once the script has hit your breakpoint, you can look at firebug's stack window: alt text

share|improve this answer
4  
Hrm, that doesn't seem to work. It stops me in a debugger on errors raised by Javascript (eg, undefined variable errors), but when I throw my own exceptions I still don't get anything but the "Uncaught exception" message. – David Wolever Mar 2 '09 at 13:37

Note that chromium/chrome (other browsers using V8) do have a convenient interface to get a stacktrace through a stack property on Error objects.

try {
   // Code throwing an exception
} catch(e) {
  console.log(e.stack);
}

It applies for the base exceptions as well as for the ones you throw yourself. (Considered that you use the Error class, which is anyway a good practice).

See details on V8 documentation

share|improve this answer
1  
Firefox supports the .stack property too. – KennyTM Apr 3 at 11:07

I don't think there's anything built in that you can use however I did find lots of examples of people rolling their own.

share|improve this answer
Ah, thanks -- the first link there seems like it may do (although the lack of recursion support may render it unworkable). – David Wolever Feb 26 '09 at 19:04
Yeah, I didn't see any that supported recursion on first glance. I'll be curious to see if there's a good solution to that. – Mark Biek Feb 26 '09 at 19:13
1  
I think the second link should support recursion for Firefox and Opera because it uses the error stack trace rather than manually building one using the arguments variable. I'd love to hear if you find a cross browser solution for the recursion issue (the first article is mine). :) – Helephant Feb 26 '09 at 23:03
Helephant: The second won't work here because, when I catch the exception, it's a "string" (ie, no "e.stack"): foo = function(){ throw "Arg"; } try { foo(); } catch (e) { /* typeof e == "string" */ } Maybe I'm throwing it wrong? (begin obligatory rant about how stupid Javascript tutorials are...) – David Wolever Mar 2 '09 at 13:43
Try to throw an object: throw { name: 'NameOfException', message: 'He's dead, Jim' }. – Aaron Digulla Mar 25 '11 at 15:09

You can access the stack (stacktrace in Opera) properties of an Error instance even if you threw it. The thing is, you need to make sure you use throw new Error(string) (don't forget the new instead of throw string.

Example:

try {
    0++;
} catch (e) {
    var myStackTrace = e.stack || e.stacktrace || "";
}
share|improve this answer
stacktrace doesn't work in Opera. I can't even find something about it. – NVI Oct 21 '09 at 19:06
@NV: It seems stacktrace isn't on user-created errors so you should do this instead: try { 0++ } catch(e) { myStackTrace=e.stack || e.stacktrace } – Eli Grey Oct 21 '09 at 19:56
It works, thanks! – NVI Oct 22 '09 at 8:20

one way to get a the real stack trace on Firebug is to create a real error like calling an undefined function:

function foo(b){
  if (typeof b !== 'string'){
    // undefined Error type to get the call stack
    throw new ChuckNorrisError("Chuck Norris catches you.");
  }
}

function bar(a){
  foo(a);
}

foo(123);

Or use console.error() followed by a throw statement since console.error() shows the stack trace.

share|improve this answer

In Firefox it seems that you don't need to throw the exception. It's sufficient to do

e = new Error();
console.log(e.stack);
share|improve this answer

In Google Chrome (version 19.0 and beyond), simply throwing an exception works perfectly. For example:

/* file: code.js, line numbers shown */

188: function fa() {
189:    console.log('executing fa...');
190:    fb();
191: }
192:
193: function fb() {
194:    console.log('executing fb...');
195:    fc()
196: }
197:
198: function fc() {
199:    console.log('executing fc...');
200:    throw 'error in fc...'
201: }
202:
203: fa();

will show the stack trace at the browser's console output:

executing fa...                         code.js:189
executing fb...                         code.js:194
executing fc...                         cdoe.js:199
/* this is your stack trace */
Uncaught error in fc...                 code.js:200
    fc                                  code.js:200
    fb                                  code.js:195
    fa                                  code.js:190
    (anonymous function)                code.js:203

Hope this help.

share|improve this answer
Ah, good to know, thanks. – David Wolever Jun 8 '12 at 18:22

It is easier to get a stack trace on Firefox than it is on IE but fundamentally here is what you want to do:

Wrap the "problematic" piece of code in a try/catch block:

try {
    // some code that doesn't work
    var t = null;
    var n = t.not_a_value;
}
    catch(e) {
}

If you will examine the contents of the "error" object it contains the following fields:

e.fileName : The source file / page where the issue came from e.lineNumber : The line number in the file/page where the issue arose e.message : A simple message describing what type of error took place e.name : The type of error that took place, in the example above it should be 'TypeError' e.stack : Contains the stack trace that caused the exception

I hope this helps you out.

share|improve this answer
1  
Wrong. He's trying to catch his OWN exceptions. If he throws "asdfg", he'll get string object, not an exception object. He's not trying to catch built-in exceptions. – Ivan Vučica Mar 16 '09 at 19:19

Here's a heretic way to solve this problem (it shows stacktrace in Firefox & Chrome)

window.raise = function(msg){throw new Error(msg)}

and from now - use raise instead of throw :)

share|improve this answer
Sorry, but that's nonsense. When this gives you a stack trace then throw new Error(msg) also gives you one. Wrapping the throw in a function just adds a useless stack item to the stack trace. – kayahr Apr 26 '12 at 9:25
Surely it's the same, but it saves You from typing the throw new Error(msg), You can write just raise(msg). – Alexey Petrushin Apr 26 '12 at 12:33
2  
But you say you do this to solve the problem. But it doesn't solve the problem, it's just a shorter way to raise exceptions. And it's a pretty bad way. Firefox doesn't display a stacktrace at all when an Error is thrown, it just shows the file and line where the error was thrown. With your solution ALL exceptions are always reported in your raise function. It's hard to find the real location of the error then. – kayahr Apr 27 '12 at 7:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.