I need to check if file/(custom)module js exists under some path. I tried like
var m = require(\'/home/test_node_project/per\'); but it throws error
var m = require(\'/home/test_node_project/per\');
Require is a synchronous operation so you can just wrap it in a try/catch.
try { var m = require('/home/test_node_project/per'); // do stuff } catch (ex) { handleErr(ex); }