How to get current file name, function name and line number?
I want to use it for logging/debugging purpose, equivalent to __FILE__, __LINE__ in c
__FILE__
__LINE__
Node.js provides a standard API to do so: Path.
Getting the name of the current script is then easy:
var path = require('path'); var scriptName = path.basename(__filename);