mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
345 B
18 lines
345 B
13 years ago
|
Use this module to convert a username/groupname to a uid/gid number.
|
||
|
|
||
|
Usage:
|
||
|
|
||
|
```
|
||
|
npm install uid-number
|
||
|
```
|
||
|
|
||
|
Then, in your node program:
|
||
|
|
||
|
```javascript
|
||
|
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.
|
||
|
})
|
||
|
```
|