Get name and line of calling function in node.js

后端 未结 5 797
陌清茗
陌清茗 2020-12-07 08:50

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.

相关标签:
5条回答
  • 2020-12-07 09:25

    I also had similar requirement. I used stack property of Error class provided by nodejs.
    I am still learning node so, there may be the chances of error.

    Below is the explanation for the same. Also created npm module for the same, if you like, you can check at:
    1. npm module 'logat'
    2. git repo

    suppose we 'logger' object with method 'log'

    var logger = {
     log: log
    }
    function log(msg){
      let logLineDetails = ((new Error().stack).split("at ")[3]).trim();
      console.log('DEBUG', new Date().toUTCString(), logLineDetails, msg);
    }
    

    Example:

    //suppose file name: /home/vikash/example/age.js
    function getAge(age) {
        logger.log('Inside getAge function');    //suppose line no: 9
    }
    

    Output of above Example:

        DEBUG on Sat, 24 Sept 2016 12:12:10 GMT at getAge(/home/vikash/example/age.js:9:12)
        Inside getAge function
    
    0 讨论(0)
  • 2020-12-07 09:34

    I found and installed the node-stack-trace module (installed with npm install stack-trace), and then defined echo as:

    function echo() {
      var args, file, frame, line, method;
      args = 1 <= arguments.length ? __slice.call(arguments, 0) : [];
    
      frame = stackTrace.get()[1];
      file = path.basename(frame.getFileName());
      line = frame.getLineNumber();
      method = frame.getFunctionName();
    
      args.unshift("" + file + ":" + line + " in " + method + "()");
      return log.info.apply(log, args); // changed 'debug' to canonical npmlog 'info'
    };
    
    0 讨论(0)
  • 2020-12-07 09:39

    The following code uses only core elements. It parses the stack from an error instance.

    "use strict";
    function debugLine(message) {
        let e = new Error();
        let frame = e.stack.split("\n")[2];
        let lineNumber = frame.split(":")[1];
        let functionName = frame.split(" ")[5];
        return functionName + ":" + lineNumber + " " + message;
    }
    function myCallingFunction() {
        console.log(debugLine("error_message"));
    }
    myCallingFunction();
    

    It outputs something like myCallingFunction:10 error_message

    I've extracted the elements of the error as variables (lineNumber, functionName) so you can format the return value any way you want.

    As a side note: the use strict; statement is optional and can be used only if your entire code is using the strict standard. If your code is not compatible with that (although it should be), then feel free to remove it.

    0 讨论(0)
  • 2020-12-07 09:41

    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:

    Object.defineProperty(global, '__stack', {
    get: function() {
            var orig = Error.prepareStackTrace;
            Error.prepareStackTrace = function(_, stack) {
                return stack;
            };
            var err = new Error;
            Error.captureStackTrace(err, arguments.callee);
            var stack = err.stack;
            Error.prepareStackTrace = orig;
            return stack;
        }
    });
    
    Object.defineProperty(global, '__line', {
    get: function() {
            return __stack[1].getLineNumber();
        }
    });
    
    Object.defineProperty(global, '__function', {
    get: function() {
            return __stack[1].getFunctionName();
        }
    });
    
    function foo() {
        console.log(__line);
        console.log(__function);
    }
    
    foo()
    

    Returns '28' and 'foo', respectively.

    0 讨论(0)
  • 2020-12-07 09:41

    Here is a one liner for quick debugging purposes:

    console.log("DEBUG", (new Error().stack.split("at ")[1]).trim());
    

    This will log something like this with Node.js:

    DEBUG SomeObject.function (/path/to/the/code.js:152:37) 
    

    --

    You can also add custom args at the end, e.g.

    console.log("DEBUG", (new Error().stack.split("at ")[1]).trim(), ">>>", myVar);
    

    Note that if you put this into a helper function, adjust the stack index from e.g. [1] to [2].

    0 讨论(0)
提交回复
热议问题