how to get the filename from the path in node.js code example
Example: get file name nodejs
var path = require('path');
var scriptName = path.basename(__filename);
var path = require('path');
var scriptName = path.basename(__filename);