Show custom function names in error stack traces
Chromium, Firefox and Safari agreed and implemented ability to set custom string as function name via non-standard property displayName
on function instance.
You can see those custom names in debugger stack and so easier track source of error in long traces of anonymous functions.
Compare informativeness of error stack traces without and with displayName
on example of jBinary:
var f = function () {
throw new Error();
};
f.displayName = "super puper function";
f(); // enjoy descriptive stack trace!
Since this property was implemented not in JS core but on level of developer tools, in Node.js you still get something like: which isn't too descriptive about what, where and why happened.
This drop-in library stringifies error stack traces in V8 both in browser and Node.js, simulating standard formatting but respecting displayName
property, so when error occurs, you get stylish stack trace with custom function names (in case of jBinary those are type descriptors and field names being processed):
You can even implement own micro BDD testing framework (example taken from http://mochajs.org/#bdd):
require('stack-displayname');
var assert = require('assert');
var describe = it = function (name, callback) {
callback.displayName = name;
callback();
};
describe('Array', function () {
describe('#indexOf()', function () {
it('should return -1 when not present', function () {
assert.equal([1,2,3].indexOf(4), -2); // wrong!
});
});
});
And it's pretty easy to compose stack trace capture with other transformations.
For example, in order to filter out non-displayName
functions:
require('stack-displayname');
var prepareStackTrace = Error.prepareStackTrace;
Error.prepareStackTrace = function (err, stack) {
return prepareStackTrace(err, stack.filter(function (item) {
return item.fun.displayName;
}));
};
// ... your code ... //
Simply install with npm as:
npm install stack-displayname
and require it:
require('stack-displayname');
This script might be useful only in Chromium, where DevTools already respect displayName
, but in the case you want to have custom function names in err.stack
property of any Error
instances (that's not natively supported), it's possible - just include script on the page via regular tag:
<script src="stack-displayname/displayName.js"></script>
Non-supported browsers will just ignore it and show stack traces as usual.
Copyright 2014 Ingvar Stepanyan
Copyright 2006-2011, the V8 project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.