How would I find the username that the computer owner is using currently (while logged in), using NodeJS?
I have searched around a bit, but haven't found anything...
How would I find the username that the computer owner is using currently (while logged in), using NodeJS?
I have searched around a bit, but haven't found anything...
Definitely, the easiest way to do it is using
username
Install:
Then:
If you want to get information about the client witch call a route on your server, you have to parse client useragent.
https://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
You can get client user agent with node using those examples :
How to handle user-agent in nodejs environment?
I am not sure why, but someone added an answer and then deleted it quickly after... I was fast enough to catch it though, and after checking, it is the shortest and most effective way of doing what I asked before:
require("os").userInfo().username
The only problem is, in Windows 10, it returns the first name of the owner account that has been used (just a heads up). Everything else works completely fine!
If it doesn't need to be cross operating systems (just *nix based), one way you could do (keep in mind that exec could be potentially risky to use if you parameterize it):
If you want to use bluebird for promises, don't forget about:
npm install bluebird --save
This one object you will get username: