Emmanuil 73a9f0ffcf 20.07.2020 | il y a 4 ans | |
---|---|---|
.. | ||
LICENSE | il y a 4 ans | |
README.md | il y a 4 ans | |
get-uid-gid.js | il y a 4 ans | |
package.json | il y a 4 ans | |
uid-number.js | il y a 4 ans |
Use this module to convert a username/groupname to a uid/gid number.
Usage:
npm install uid-number
Then, in your node program:
var uidNumber = require("uid-number")
uidNumber("isaacs", function (er, uid, gid) {
// gid is null because we didn't ask for a group name
// uid === 24561 because that's my number.
})