How to get OS username in NodeJS?
This one object you will get username:
let os = require('os')
console.log(os.userInfo());
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!