Skip to content
Advertisement

Get name and line of calling function in node.js

How can one get the name and line of a function that called the current one? I would like to have a rudimentary debugging function like this (with npmlog defining log.debug):

JavaScript

When called from another function it would be something like this:

JavaScript

For clarity, what I want is essentially analogous to this in Python:

JavaScript

Is there a Node equivalent to accomplish this?

Advertisement

Answer

Using info from here: Accessing line number in V8 JavaScript (Chrome & Node.js)

you can add some prototypes to provide access to this info from V8:

JavaScript

Returns ’28’ and ‘foo’, respectively.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement