Emmanuil 73a9f0ffcf 20.07.2020 il y a 4 ans
..
LICENSE 73a9f0ffcf 20.07.2020 il y a 4 ans
README.md 73a9f0ffcf 20.07.2020 il y a 4 ans
get-uid-gid.js 73a9f0ffcf 20.07.2020 il y a 4 ans
package.json 73a9f0ffcf 20.07.2020 il y a 4 ans
uid-number.js 73a9f0ffcf 20.07.2020 il y a 4 ans

README.md

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.
})