username-userid
Convert a linux username to a uid in your nodejs program.
Usage
var usernameToUid = require("username-userid"); // callback apiusernameToUid("michael", function(err, uid) { console.log(uid);}); // promise apiusernameToUid("michael").then(function(uid) { console.log(uid);}).catch(function(err) { console.error(err);}) ## Run the tests ```bashnpm test