node/deps/npm/node_modules/uid-number
isaacs f76c3938d0 npm: upgrade to v1.4.8
* Check SHA before using files from cache
* adduser: allow change of the saved password
* Make `npm install` respect `config.unicode`
* Fix lifecycle to pass `Infinity` for config env value
* Don't return 0 exit code on invalid command
* cache: Handle 404s and other HTTP errors as errors
* bump tap dep, make tests stderr a bit quieter
* Resolve ~ in path configs to env.HOME
* Include npm version in default user-agent conf
* npm init: Use ISC as default license, use save-prefix for deps
* Many test and doc fixes
2014-05-01 11:09:00 -07:00
..
LICENCE npm: upgrade to v1.4.8 2014-05-01 11:09:00 -07:00
LICENSE npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00
README.md Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
get-uid-gid.js Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
package.json npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00
uid-number.js npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00

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