Denis 346b78aee1 first commit 2 жил өмнө
..
LICENSE 346b78aee1 first commit 2 жил өмнө
README.md 346b78aee1 first commit 2 жил өмнө
get-uid-gid.js 346b78aee1 first commit 2 жил өмнө
package.json 346b78aee1 first commit 2 жил өмнө
uid-number.js 346b78aee1 first commit 2 жил өмнө

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