I am trying to get the windows username of the machine that is running my node.jS app (the app is always running on a Windows machine).
How can I get the current windows
Since Node v6 (2016-04), you can just use os.userInfo :
To get the current logged-in username:
var path = require('path');
var userName = process.env['USERPROFILE'].split(path.sep)[2];
var loginId = path.join("domainName",userName);
console.log(loginId);
once we get the username from above code.we can't able to hit this username api by client side.it showing 401 res for this method