huanggang 03a863fb53 add node_modules 7 年之前
..
LICENSE 03a863fb53 add node_modules 7 年之前
README.md 03a863fb53 add node_modules 7 年之前
get-uid-gid.js 03a863fb53 add node_modules 7 年之前
package.json 03a863fb53 add node_modules 7 年之前
uid-number.js 03a863fb53 add node_modules 7 年之前

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