Node.js - getting current filename Ask Question

Node.js - getting current filename Ask Question

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

ベストアンサー1

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);

おすすめ記事