Denis 346b78aee1 first commit il y a 2 ans
..
LICENSE 346b78aee1 first commit il y a 2 ans
README.md 346b78aee1 first commit il y a 2 ans
get-uid-gid.js 346b78aee1 first commit il y a 2 ans
package.json 346b78aee1 first commit il y a 2 ans
uid-number.js 346b78aee1 first commit il y a 2 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.
})